import { FormErrors, FormFieldsObj, FormFieldType, FormStoreProps } from './types'; export declare class FormStore { props: FormStoreProps; globalError: string; hasEdited: {}; simpleValues: {}; values: FormFieldsObj; derivedValues: {}; errors: FormErrors; mountKey: number; get fields(): FormFieldsObj; lastPropValues: {}; updateValuesFromProps: void; updateDerivedValues: void; setErrors(value: FormErrors): void; changeValue: (key: string, next: Partial, isDirectEdit?: boolean) => void; removeField(name: string): void; getValue(name: string): any; getFilters(names: string[]): import("../tables/types").TableFilterIncludeExclude[]; } //# sourceMappingURL=FormStore.d.ts.map