/** * Harness for asserting that 's `context` prop is forwarded into * the dock instance reactively — including the case where the initial value * is `undefined` and is later populated (async route data), and the case * where the prop changes multiple times after mount. * * Owns a `$state` ref for the current context so that the test can mutate it * post-mount via the `setContextProp` callback exposed via `onReady`. */ import { type ToolsDockInstance } from '../tools-dock/define-tools-dock.svelte.js'; import type { ToolsDockContext } from '../types.js'; interface Props { onReady: (api: { dock: ToolsDockInstance; setContextProp: (next: ToolsDockContext | null | undefined) => void; }) => void; } declare const ContextForwardingHarness: import("svelte").Component; type ContextForwardingHarness = ReturnType; export default ContextForwardingHarness; //# sourceMappingURL=context-forwarding-harness.svelte.d.ts.map