import * as React from 'react'; import { StandardProps } from '../../common'; export interface ListItemProps extends StandardProps { /** * Whether the button is active. */ active?: boolean; /** * The content of the component. */ children?: React.ReactNode; /** * If `true`, padding will be removed from the list. */ disablePadding?: boolean; /** * If `true`, a border is added around the list item. Default is true. */ border?: boolean; } export declare const ListItem: React.SFC & { inner: { readonly StyledListItem: any; }; };