import { LayoutState, LayoutAction } from './layout/reducer'; export declare type ActionProps = LayoutAction; export interface StoreProps { layout: LayoutState; } declare const reducers: { layout: (state: LayoutState | undefined, action: { type: "SET_LAYOUT_MENUS" | "SET_LAYOUT_TEST"; } & Partial) => LayoutState; }; export default reducers;