import { GetStylesApi } from '../../core';
import type { ListFactory } from './List';
export interface ListContextValue {
    getStyles: GetStylesApi<ListFactory>;
    center: boolean | undefined;
    icon: React.ReactNode | undefined;
}
export declare const ListProvider: import("react").Context<ListContextValue | null>, useListContext: () => ListContextValue;
