import 'lazysizes'; import { ThumborSettingType } from '../../../Common/types'; import { InputFormClassesType } from '../../types'; declare type InputFormProps = { value: string; onChange: (value: string) => void; onSubmit: (value: string) => void; minLength?: number; classes: InputFormClassesType; thumborSetting?: ThumborSettingType; withHeader?: boolean; brandName: string; onRedirectToTnC?: () => void; inputPlaceholder?: string; onRedirectToPrivacyPolicy?: () => void; customLocales?: { continue?: string; disclaimer?: string; inputWhatsApp?: string; }; }; declare const InputForm: ({ value, onChange, minLength, onSubmit, classes, withHeader, brandName, inputPlaceholder, onRedirectToPrivacyPolicy, onRedirectToTnC, customLocales, }: InputFormProps) => JSX.Element; export default InputForm;