import { default as React } from 'react'; import { Flex } from '../flex'; export type ListProps = Omit, 'as' | 'asChild'> & { parentValue?: string; }; export declare const ListContext: React.Context<{ parentValue: string | undefined; level: number; }>; declare const List: React.ForwardRefExoticComponent, HTMLSpanElement>, "ref"> & React.RefAttributes, "ref"> | Omit, HTMLSpanElement>, "ref"> & React.RefAttributes, "ref"> | Omit, HTMLDivElement>, "ref"> & React.RefAttributes, "ref">, "as" | "asChild"> & { parentValue?: string; } & React.RefAttributes>; export { List };