import { type Readable } from 'svelte/store'; import { type WithGet } from '../withGet.js'; import type { MaybeReadable } from '../../types.js'; type TODO = any; export type ToReadableStores> = { [K in keyof T]: T[K] extends Readable ? WithGet : T[K] extends MaybeReadable ? WithGet> : WithGet>; }; /** * Given an object of properties, returns an object of writable stores * with the same properties and values. */ export declare function toReadableStores>(properties: T): ToReadableStores; export {};