import { TextInputProps, ViewStyle } from 'react-native'; export interface SearchInputProps extends Omit { value: string; onChangeText: (text: string) => void; placeholder?: string; onClear?: () => void; style?: ViewStyle; }