/** * Store creation logic. */ import type { Store, StoreDefinition } from './types'; /** * Creates a reactive store with state, getters, and actions. * * @template S - State type * @template G - Getters type * @template A - Actions type * @param definition - Store definition * @returns The reactive store instance */ export declare const createStore: , G extends Record = Record, A extends Record any> = Record>(definition: StoreDefinition) => Store; //# sourceMappingURL=create-store.d.ts.map