/** * DockPopoutHost - the tiny root mounted into a popped-out browser window. It * just renders the manager's `pane` snippet for the popped pane, so a pop-out * shows the exact same content as the docked view. */ import type { Snippet } from 'svelte'; import type { DockPane } from './dock-model'; type $$ComponentProps = { pane: Snippet<[DockPane]>; paneData: DockPane; }; declare const DockPopoutHost: import("svelte").Component<$$ComponentProps, {}, "">; type DockPopoutHost = ReturnType; export default DockPopoutHost;