import type { Store } from './types.ts'; /** * Creates "store" - subscribable state container. * @param initialValue Initial value. * @returns Store. */ export declare function createStore(initialValue: T): Store;