import { TextStyle } from 'react-native'; import { textSize } from '../Text/Text'; import { list } from './SelectRowList'; type Props = { item: list; searchOption: string; index: number; size?: textSize; bold?: boolean; overrideStyleOptionsItem?: TextStyle; searchListTestId?: string; }; declare const SearchListLabel: ({ item, searchOption, index, size, bold, overrideStyleOptionsItem, searchListTestId, }: Props) => JSX.Element; export default SearchListLabel;