/** * `GroupView` — one tab GROUP: the draggable tab strip, the active body, the * imperative `__deckHandleDrop` seam, and a geometry-driven drop indicator while * a drag hovers. Owns all tab drag/drop handlers. */ import { type ReactNode } from 'react'; import type { TabGroupNode } from '../layout/index.js'; import type { RenderContext } from './dock-view.js'; export interface GroupViewProps { node: TabGroupNode; ctx: RenderContext; } /** * One tab GROUP: tab strip (draggable tabs) + active body + the imperative * `__deckHandleDrop` seam + a geometry-driven drop indicator while a drag hovers. */ export declare function GroupView(props: GroupViewProps): ReactNode; //# sourceMappingURL=group-view.d.ts.map