/** @packageDocumentation * @module WidgetPanels */ import "./Panels.scss"; import * as React from "react"; import type { CommonProps } from "@itwin/core-react"; /** Properties of [[WidgetPanels]] component. * @internal */ export interface WidgetPanelsProps extends CommonProps { /** Content that is affected by pinned state of panels. */ children?: React.ReactNode; /** Content that is always rendered as if panels are in a pinned state. */ centerContent?: React.ReactNode; } /** Component that displays widget panels. * @internal */ export declare function WidgetPanels(props: WidgetPanelsProps): JSX.Element; /** @internal */ export declare const ContentNodeContext: React.Context; /** @internal */ export declare const CenterContentNodeContext: React.Context; //# sourceMappingURL=Panels.d.ts.map