export interface PhoneInputBoxProps {
    value: string;
    onChange: (phone: string, formattedPhone: string, isValid: boolean) => void;
    onFocus?: () => void;
    onBlur?: () => void;
    onEnter?: () => void;
}
export declare function PhoneInputBox(props: PhoneInputBoxProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=Inputs.d.ts.map