export interface SearchBarProps { value: string; onChangeText: (text: string) => void; placeholder?: string; onFocus?: () => void; onSubmit?: () => void; }