/** * Store implementation for Composable Svelte. * * The Store is the runtime that manages state, processes actions, and executes effects. * Uses $state.raw() for reactive state tracking across compiled library boundaries. * Consumers can use either $derived(store.state) or $store (subscribe-based) patterns. */ import type { Store, StoreConfig } from './types.js'; /** * Create a Store for a feature. * * @example * ```typescript * const store = createStore({ * initialState: { count: 0 }, * reducer: counterReducer, * dependencies: { apiClient } * }); * ``` */ export declare function createStore(config: StoreConfig): Store; //# sourceMappingURL=store.svelte.d.ts.map