export declare type FormFieldType = "boolean" | "date" | "decimal" | "integer" | "string"; /** * This interface defines the values that will be put into and extracted from * input fields, not the values of the source object. */ export declare type FormState = { [name: string]: string | number; }; /** * Define the types of the data in the form source object. */ export declare type FormStateDataTypes = { [name: string]: FormFieldType; };