import React from 'react'; export declare enum PhoneNumberStatusEnum { DEFAULT = "DEFAULT", ERROR = "ERROR" } export interface CountryCodeOption { label: string; value: string; } export interface PhoneNumberInputProps { status?: PhoneNumberStatusEnum; label?: string; caption?: string; disabled?: boolean; phoneNumber: string; countryOptions: CountryCodeOption[]; selectedCountry: CountryCodeOption; onFocus?: () => void; onBlur?: () => void; onCountryChange: (countryCode: CountryCodeOption) => void; onPhoneNumberChange: (phoneNumber: string) => void; placeholder?: string; className?: string; } export declare const PhoneNumberInput: React.FC; //# sourceMappingURL=PhoneNumberInput.d.ts.map