/** * Props for the ListItem component * @extends {Omit, "className" | "style">} */ interface ListItemProps extends Omit, "className" | "style"> { /** The main text label to display */ label?: string; /** Secondary descriptive text to show below the label */ description?: string; /** Content to render at the start/left of the list item */ startAdornment?: React.ReactNode; /** Content to render at the end/right of the list item */ endAdornment?: React.ReactNode; /** Child content to render inside the list item */ children?: React.ReactNode; /** Whether the list item is disabled */ disabled?: boolean; } declare const ListItem: import('react').ForwardRefExoticComponent>; export { ListItem }; export type { ListItemProps };