import { FormType } from '../../../interfaces'; export declare const hasChanged: (form: Partial, value: Partial) => boolean; export interface FormEditState { past: Partial[]; future: Partial[]; current: Partial; original: Partial; } export declare function createInitialState(props: any): FormEditState; export declare const reducer: (state: FormEditState, { type, value }: any) => FormEditState;