/// import type { Colors } from '@fuel-ui/css'; import type { HTMLProps } from '../../utils'; import type { IconProps } from '../Icon'; import { ListItem } from './ListItem'; export type ListContext = { icon?: IconProps['icon']; iconColor?: Colors; iconSize?: number; iconAriaLabel?: string; }; export declare function useListContext(): ListContext; type BaseProps = HTMLProps['ul'] | HTMLProps['ol']; export type ListProps = BaseProps & ListContext & { type?: 'ordered' | 'unordered'; }; type ObjProps = { Item: typeof ListItem; }; export declare const List: import("react").ForwardRefExoticComponent & import("react").RefAttributes> & ObjProps; export {};