/** * Store - Re-exports store spec and instance creation. * * This module provides the main entry point for creating stores: * - `store()` - Creates store specifications * - `createStoreInstance()` - Creates store instances (internal) */ export { store } from './storeSpec'; export { createStoreInstance, type CreateStoreInstanceOptions, } from './storeInstance'; //# sourceMappingURL=store.d.ts.map