import { StateBase, ActionsBase, StoreSpec, StoreOptions } from '../types'; /** * Create a store specification. * * The spec is both a definition AND a factory function: * - As object: holds name, options, and STORION_TYPE * - As function: `spec(resolver) => StoreInstance` * * Instances are created lazily via container.get() or by calling spec directly. */ export declare function store(options: StoreOptions): StoreSpec; //# sourceMappingURL=storeSpec.d.ts.map