import { IViewProps } from '../View'; import { color } from '../utils/propTypes/color'; export interface IListItemProps extends IViewProps { readonly backgroundColor?: color; readonly hideLine?: boolean; readonly padded?: boolean; } declare const ListItem: ({ backgroundColor, hideLine, padded, ...props }: IListItemProps) => JSX.Element; export default ListItem;