import React from 'react'; import { ListDirection, ListSpacing } from './ListContext.js'; export declare type ListProps = React.ComponentProps<'ul'> & { spacing?: ListSpacing; divider?: boolean; direction?: ListDirection; }; export declare const List: { (props: ListProps): JSX.Element; Item: React.FC, HTMLLIElement>>; }; export declare type ListItemProps = React.ComponentProps<'li'>;