import { PolymorphicComponent } from './_shared'; export declare type ListType = 'unordered' | 'ordered'; export declare type ListProps = { /** * Renders bulleted or numbered `ListItem` elements. * * @default 'unordered' */ type?: ListType; }; /** * `List` is a layout component that renders a collection of listed items. * * @example * ```jsx * * Ana * Elsa * Olaf * Sven * * ``` */ export declare const List: PolymorphicComponent<'ul', ListProps>; export declare type ListItemProps = {}; /** * `ListItem` is a layout component that renders an item within a `List`. * * @example * ```jsx * * Ana * Elsa * Olaf * Sven * * ``` */ export declare const ListItem: PolymorphicComponent<'li', ListItemProps>;