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; displayName: string; __docgenInfo: { description: string; displayName: string; props: { value: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; onChange: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; onSubmit: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; minLength: { defaultValue: { value: number; }; description: string; name: string; required: boolean; type: { name: string; }; }; classes: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; thumborSetting: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; withHeader: { defaultValue: { value: boolean; }; description: string; name: string; required: boolean; type: { name: string; }; }; brandName: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; onRedirectToTnC: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; inputPlaceholder: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; onRedirectToPrivacyPolicy: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; customLocales: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; }; }; }; export default InputForm;