import type { MasterPatternViewEntity } from '../types/service.types'; import type { MasterPatternViewDefinition } from '../types/definition.types'; import type { MasterViewStore } from './types'; /** * Creates a new isolated Zustand store instance for a MasterPatternView component. * In DEV mode, devtools middleware is applied for Redux DevTools visibility, * with each instance named after the definition name for easy identification. * * @param definition - The master view definition that configures initial state * @returns A new StoreApi instance with all slices combined */ export declare function createMasterViewStore(definition: MasterPatternViewDefinition, defaultCreateValues?: Record, initialPageSize?: number): MasterViewStore; //# sourceMappingURL=createMasterViewStore.d.ts.map