import { Form } from './containers'; import { Action } from './actions'; export declare type State = { [form: string]: Form; }; export default function formsReducer(state: State | undefined, a: Action): State;