export interface ListItemProps extends React.LiHTMLAttributes { /** * If true, the item will be selected. * @default false * @example true */ selected?: boolean; } export declare const ListItem: import('react').ForwardRefExoticComponent>;