import { MasterDetailLayoutState, MasterDetailLayoutStateWithActions } from './types'; /** * Crea el Store para ModuleLayout. * Este store se encarga de manejar el estado del layout de módulo. * @param props Las props iniciales del store. */ export declare const createMasterDetailLayoutStore: (initProps: MasterDetailLayoutState, storeDevtoolsEnabled?: boolean) => import('zustand').UseBoundStore, "setState"> & { setState(partial: MasterDetailLayoutStateWithActions | Partial | ((state: MasterDetailLayoutStateWithActions) => MasterDetailLayoutStateWithActions | Partial), replace?: boolean | undefined, action?: A | undefined): void; }, "setState"> & { setState(nextStateOrUpdater: MasterDetailLayoutStateWithActions | Partial | ((state: import('immer/dist/internal.js').WritableDraft) => void), shouldReplace?: boolean | undefined, action?: string | { type: unknown; } | undefined): void; }>; export type MasterDetailLayoutStore = ReturnType; //# sourceMappingURL=store.d.ts.map