///
import type { PhoneInputBaseProps } from '../../../InputBase/PhoneInputBase/PhoneInputBase';
export interface PhoneInputProps extends Omit {
countryName: string;
phoneName: string;
}
declare function PhoneInput({ phoneName, countries, countryName, helperText, isCountriesLoading, disabled, feedback, ...props }: Readonly): import("react").JSX.Element;
declare namespace PhoneInput {
var displayName: string;
}
export default PhoneInput;