/** @packageDocumentation * @module StagePanels */ import { WidgetZoneId } from "../zones/manager/Zones"; /** Properties used by [[NineZoneStagePanelPaneManager]]. * @alpha */ export interface NineZoneStagePanelPaneManagerProps { readonly widgets: ReadonlyArray; } /** Returns default [[NineZoneStagePanelPaneManagerProps]] object. * @alpha */ export declare const getDefaultNineZoneStagePanelPaneManagerProps: () => NineZoneStagePanelPaneManagerProps; /** Class used to manage [[NineZoneStagePanelPaneManagerProps]]. * @alpha */ export declare class NineZoneStagePanelPaneManager { addWidget(widgetId: WidgetZoneId, props: TProps): TProps; removeWidget(widgetId: WidgetZoneId, props: TProps): TProps; } //# sourceMappingURL=StagePanelPane.d.ts.map