import { BasePanel, BasePanelOptions, BasePanelDock } from "./BasePanel"; /** * Sidebar-style panel: fills the caller's `container` (e.g. a flex column). * Same as {@link BasePanel} with `placement: "embedded"` and a required `dock` hint for styling. */ export interface DockPanelOptions extends Omit { dock: BasePanelDock; } export declare class DockPanel extends BasePanel { constructor(options: DockPanelOptions); }