import { type Writable } from "svelte/store"; export declare function useControllable(controlledValue: T | undefined, onChange?: (value: T) => void, defaultValue?: T): readonly [Writable, (value: unknown) => void | undefined];