import type { FC } from 'react'; import type { ViewProps } from 'react-native'; interface ScrollViewListItemProps { highlight: string; title: string; style?: ViewProps['style']; onPress?: () => void; ignoreAccents?: boolean; numberOfLines?: number; theme?: 'light' | 'dark'; } export declare const ScrollViewListItem: FC; export {}; //# sourceMappingURL=ScrollViewListItem.d.ts.map