import { ChangeEvent, FC, InputHTMLAttributes } from 'react';
type TFieldPhone = InputHTMLAttributes<HTMLInputElement> & {
    id: string;
    onChange: (e: ChangeEvent<HTMLInputElement>) => void;
    isError?: boolean;
    className?: string;
    ref?: null;
};
export declare const FieldPhone: FC<TFieldPhone>;
export {};
//# sourceMappingURL=field-phone.d.ts.map