import { FunctionComponent } from 'react'; import { InputProps } from '../BaseInput'; import { Country } from '../constants'; export interface Props extends Pick> { /** Can be used to manually force OS-native select menu instead of react-select control (for testing). By default, only mobile browsers will use OS-native version. */ renderNativeSelect?: boolean; /** A list of `Country`s to populate the country/calling code select list */ countryCodeList?: Country[]; /** Custom label for the calling code field */ callingCodeLabel?: string; /** Custom label for the phone number field */ phoneNumberLabel?: string; onChange: (newVal: string) => void; } export declare const PhoneInput: FunctionComponent; export default PhoneInput; //# sourceMappingURL=index.d.ts.map