import React from 'react'; import { RegisterOptions, FieldPath, FieldValues } from 'react-hook-form'; interface TelFieldProps extends Omit, 'name' | 'type'> { name: FieldPath; label?: string; error?: string; helperText?: string; required?: boolean; validation?: RegisterOptions; wrapperClassName?: string; prefixIcon?: React.ReactNode; suffixIcon?: React.ReactNode; } export declare function TelField({ name, label, error, wrapperClassName, helperText, required, validation, className, defaultValue, prefixIcon, suffixIcon, ...props }: TelFieldProps): React.JSX.Element; export {};