import type { ResolvedConfig } from "../types"; import type { SheetStoreBundle } from "./store-types"; /** * Create an isolated Zustand store for a sheet stack instance. * * Returns a store bundle containing the Zustand store plus two maps * that track ad-hoc (component-direct) registrations: * - `componentRegistry` — maps `ComponentType` → generated type key (dedup) * - `componentMap` — maps generated type key → `ComponentType` (renderer lookup) * * The ad-hoc counter is scoped per instance to prevent identity leaks across * multiple `createStacksheet()` calls or test runs. */ export declare const createSheetStore: (config: ResolvedConfig) => SheetStoreBundle; //# sourceMappingURL=create-sheet-store.d.ts.map