import 'react-intl-tel-input/dist/main.css'; import './index.css'; import { FC } from 'react'; export interface InputTelProps { label?: string; placeholder?: string; name?: string; required?: boolean; value?: { isValid?: boolean; number?: string; internationalNumber?: string; }; error?: { isValid?: boolean; number?: string; }; defaultCountry?: string; hideLabel?: boolean; onChange?: (e: any) => void; onBlur?: (e: any) => void; variant?: 'normal' | 'booking'; } export declare const InputTel: FC; export default InputTel;