export interface PanelInstanceContextType { title: string; setTitle: (title: string) => void; uniqueId: string; bounds: string | Element | undefined; panelTogglePopout: () => void; panelClose: () => void; setPanelWindow: (w: Window) => void; bringPanelToFront: () => void; panelPoppedOut: boolean; zIndex: number; dockId: string | undefined; docked: boolean; dock: (id: string) => void; undock: () => void; hidden?: boolean; } /** * Provides access to closing/popping panels */ export declare const PanelInstanceContext: import("react").Context;