import React, { ReactNode } from 'react'; import { TextInput, TextInputProps } from 'react-native'; export declare type SearchBarProps = TextInputProps & { showIcon?: boolean; isLoading?: boolean; after?: ReactNode; }; export declare const SearchBar: React.ForwardRefExoticComponent>;