/** @packageDocumentation * @module Toolbar */ import "./Panel.scss"; import * as React from "react"; import { CommonProps } from "@bentley/ui-core"; /** Properties of [[Panel]] component. * @alpha */ export interface PanelProps extends CommonProps { /** Panel content. */ children?: React.ReactNode; } /** Basic panel used in [[ExpandableItem]]. Used as base in [[Group]] and [[NestedGroup]] components. * @alpha */ export declare class Panel extends React.PureComponent { private static _groupPanelClassName; render(): JSX.Element; /** Determines if an expandable group panel is open. * @deprecated */ static get isPanelOpen(): boolean; } //# sourceMappingURL=Panel.d.ts.map