/** @packageDocumentation * @module StagePanels */ import "./StagePanels.scss"; import * as React from "react"; import { CommonProps } from "@bentley/ui-core"; /** Properties of [[StagePanels]] component. * @beta */ export interface StagePanelsProps extends CommonProps { /** Bottom panel. I.e. [[StagePanel]] */ bottomPanel?: React.ReactNode; /** Stage panels content. */ children?: React.ReactNode; /** Left panel. I.e. [[StagePanel]] */ leftPanel?: React.ReactNode; /** Right panel. I.e. [[StagePanel]] */ rightPanel?: React.ReactNode; /** Top panel. I.e. [[StagePanel]] */ topPanel?: React.ReactNode; } /** Stage panels component of 9-Zone UI app. * @beta */ export declare class StagePanels extends React.PureComponent { render(): JSX.Element; } //# sourceMappingURL=StagePanels.d.ts.map