/** * Integration harness — invokes activityFeed() inside a component-init scope so * the `$effect` it (and the underlying `liveCollection`) installs wires up to a * real component lifecycle, then hands the feed handle back to the test. */ import type { SmrtWebCollection } from '@happyvertical/smrt-web'; import type { ShellState } from '../../components/workspace/index.js'; import { type ActivityFeedHandle, type ActivityFeedMap } from '../activity-feed.svelte.js'; interface Props { collection: SmrtWebCollection>; shell: ShellState; map: ActivityFeedMap>; onReady: (handle: ActivityFeedHandle) => void; } declare const ActivityFeedHarness: import("svelte").Component; type ActivityFeedHarness = ReturnType; export default ActivityFeedHarness; //# sourceMappingURL=activity-feed-harness.svelte.d.ts.map