import React from 'react';
import { TextInputProps } from 'react-native';
import { type EachCountry } from '../constants/constants.d';
import { type PickerOpenRef } from './Picker.d';
interface Props {
    darkMode: boolean;
    onSelect: (value: EachCountry) => void;
    searchInputProps?: TextInputProps;
}
declare const CountryPickerModal: React.ForwardRefExoticComponent<Props & React.RefAttributes<PickerOpenRef>>;
export default CountryPickerModal;
