/** * Bridge between @dnd-kit/state (Preact signals) and Svelte 5 reactivity. * * Uses a hybrid push-pull strategy: * - Pull: A Proxy tracks which properties the template actually reads * - Push: A single @dnd-kit/state effect watches only tracked properties * and bumps a single $state dirty counter when any change * - Read: Getters read `dirty` (so Svelte subscribes) then return * the current value from the instance */ export declare function createDeepSignal(getTarget: () => T): { readonly current: T; }; //# sourceMappingURL=createDeepSignal.svelte.d.ts.map