import { TextboxInterface } from '../Textbox'; import { ErrorMessageInterface } from '../ErrorMessage'; import { ThemeComponentInterface } from '@redesign-system/theme'; import { LabelInterface } from '../Label'; export interface HelpMessageInterface { } export declare type ValidateField = (value: string) => boolean; export interface FormTextBoxInterface extends ThemeComponentInterface { control?: Partial; errorMessage?: string | Partial; helpMessage?: string | Partial; id: string; invalid?: boolean; label?: string | Partial; placeholder?: string; required?: boolean; touched?: boolean; value?: string; }