import { Control, FieldPath, FieldValues } from 'react-hook-form'; import { FieldComponents } from './form'; import { PhoneInputProps } from './phone-input'; import type * as React from 'react'; export interface PhoneInputFieldProps extends Omit { control?: Control; name: FieldPath; label?: string | React.ReactNode; description?: string; components?: Partial & { Input?: (props: PhoneInputProps & { ref?: React.Ref; }) => React.ReactElement; }; className?: string; inputClassName?: string; } export declare const PhoneInputField: { ({ control, name, label, description, className, inputClassName, components, ref, ...props }: PhoneInputFieldProps & { ref?: React.Ref; }): import("react/jsx-runtime").JSX.Element; displayName: string; }; //# sourceMappingURL=phone-input-field.d.ts.map