import { default as React } from 'react'; interface ListItemRowProps { onClick?: () => void; leftIcon?: React.ReactNode; rightIcon?: React.ReactNode; title?: string; subtitle?: string; rightContent?: React.ReactNode; titleBold?: boolean; rightContentBold?: boolean; } export declare const ListItemRow: React.FC; export {};