/** * Test harness — invokes liveCollection() inside a component init scope so the * `$effect` that `useLiveQuery` installs wires up correctly, then hands the * returned reactive view back to the test via the `onReady` callback prop. */ import type { SmrtWebCollection } from '@happyvertical/smrt-web'; import { type LiveCollection } from '../live-collection.svelte.js'; interface Props { handle: SmrtWebCollection>; onReady: (view: LiveCollection>) => void; } declare const Harness: import("svelte").Component; type Harness = ReturnType; export default Harness; //# sourceMappingURL=harness.svelte.d.ts.map