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