import { InitialModuleLayoutStoreProps, ModuleLayoutStateWithActions } 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 createModuleLayoutStore: (initProps: InitialModuleLayoutStoreProps, storeDevtoolsEnabled?: boolean) => import('zustand').UseBoundStore, "setState"> & { setState(partial: ModuleLayoutStateWithActions | Partial | ((state: ModuleLayoutStateWithActions) => ModuleLayoutStateWithActions | Partial), replace?: boolean | undefined, action?: A | undefined): void; }, "setState"> & { setState(nextStateOrUpdater: ModuleLayoutStateWithActions | Partial | ((state: import('immer/dist/internal.js').WritableDraft) => void), shouldReplace?: boolean | undefined, action?: string | { type: unknown; } | undefined): void; }>; export type ModuleLayoutStore = ReturnType; //# sourceMappingURL=store.d.ts.map