/// export declare type ListSpacing = 'sm' | 'md' | 'lg' | 'none'; export declare type ListDirection = 'vertical' | 'horizontal'; export interface ListContext { spacing: ListSpacing; direction: ListDirection; } export declare const ListProvider: ({ spacing, direction, children }: { spacing: any; direction: any; children: any; }) => JSX.Element; export declare const useList: () => ListContext;