import * as React from "react"; import "react-international-phone/style.css"; export type Country = string; export interface PhoneInputProps extends Omit, "onChange" | "value"> { value?: string; onChange?: (value: string | undefined) => void; defaultCountry?: Country; disabled?: boolean; placeholder?: string; error?: string; onValidationChange?: (isValid: boolean, error?: string) => void; showCountrySelector?: boolean; } export declare const PhoneInput: React.ForwardRefExoticComponent>; //# sourceMappingURL=phone-input.d.ts.map