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