import { type Readable, type Writable } from "svelte/store";
export declare function fromStoreTwoWayBinding<T>(store: Writable<T> | Readable<T>): {
    current: T;
};
