import { default as React } from 'react';
import { PhoneInputComponent } from './component';
type PhoneInputProps = {
    name: string;
    label?: string;
    className?: string;
    defaultCountry?: string;
    country?: string;
    required?: boolean;
    locale?: string;
} & Omit<React.ComponentProps<typeof PhoneInputComponent>, "name" | "defaultCountry" | "country" | "international" | "placeholder">;
export declare function PhoneInput({ name, label, className, defaultCountry, country, required, locale, ...props }: PhoneInputProps): import("react/jsx-runtime").JSX.Element;
export {};
