import { IListItemProps } from '../ListItem'; import { flexType } from '../View'; interface ChevronRightListItem extends IListItemProps { readonly flex?: flexType; readonly innerStyle?: any; } declare const ChevronRightListItem: ({ innerStyle, children, flex, ...props }: ChevronRightListItem) => JSX.Element; export default ChevronRightListItem;