import { TextInputProps } from 'react-native';
export type CountryFilterProps = TextInputProps;
export declare const CountryFilter: {
    (props: CountryFilterProps): import("react/jsx-runtime").JSX.Element;
    defaultProps: {
        autoFocus: boolean;
        placeholder: string;
    };
};
