import { type Writable } from 'svelte/store'; import { type WithGet } from '../withGet.js'; export type ToWritableStores> = { [K in keyof T]: WithGet>; }; /** * Given an object of properties, returns an object of writable stores * with the same properties and values. */ export declare function toWritableStores>(properties: T): ToWritableStores;