export type ListDensity = 'compact' | 'balanced' | 'spacious';
export type ListMarkerStyle = 'none' | 'disc' | 'decimal' | 'circle';
export interface ListContextValue {
    density: ListDensity;
    hasDividers: boolean;
    listStyle: ListMarkerStyle;
}
export declare const ListContext: import("react").Context<ListContextValue | null>;
//# sourceMappingURL=ListContext.d.ts.map