import * as React from 'react'; import React__default, { FC } from 'react'; import { P as PositionType } from '../commonTypes-BtF87PmG.mjs'; type LabelProps = { hint?: React.ReactNode; hintSide?: PositionType; htmlFor?: string; required?: boolean; }; type PhoneInputProps = { preferredCountry?: { label: string; }; helperText?: any; label?: string; labelProps?: LabelProps; placeholder?: string; handleChange?: (value: string) => void; inputProps?: React__default.InputHTMLAttributes; countryCodes?: { label: string; }[]; }; declare const PhoneInput: FC; export { PhoneInput, type PhoneInputProps };