import * as React from 'react'; interface Props { style?: React.CSSProperties; id: string; title?: string; children?: React.ReactNode; onClick?: (e?: any) => void; clickable?: boolean; } declare const ListItem: { (props: Props): JSX.Element; defaultProps: { clickable: boolean; }; }; export declare const StyledListItem: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, Props, never>; export default ListItem;