import { ReactNode } from 'react'; import CSS from 'csstype'; declare function ListItem({ isSelected, children, style, padding, margin }: { isSelected: boolean; children: ReactNode; style?: CSS.Properties; padding?: string; margin?: string; }): JSX.Element; export default ListItem;