import { Reducer } from 'redux'; export declare type FormState = { [s: string]: { name: string; valid: boolean; control: { [s: string]: any; }; }; }; export declare const formInitState: FormState; export declare const formReducer: Reducer;