import { ASTState } from './ast'; import { CupsState } from './cups'; import { EditorState } from './editor'; export interface AllType { ast: ASTState; cups: CupsState; editor: EditorState; } export declare const allReducer: { ast: import("redux").Reducer; cups: import("redux").Reducer; editor: import("redux").Reducer; }; export declare const allInitialState: { ast: import("../..").ASTContainerNode; cups: CupsState; editor: EditorState; };