import { Store } from '../svelte-store'; import { PreloadedStoreState } from '../types'; /** * Initialize the store and automatically dispose on component destroy. * Call at component init time (e.g., in root layout). * * @param store - The Store instance with registered reducers and sagas * @param initialState - Optional preloaded state */ export declare function useInitStore(store: Store, initialState?: PreloadedStoreState): void; //# sourceMappingURL=use-init-store.d.ts.map