/** @packageDocumentation * @module WidgetPanels */ import "./StandardLayout.scss"; import * as React from "react"; import type { CommonProps } from "@itwin/core-react"; interface StandardLayoutProps extends CommonProps { /** Main content area of the application (i.e. viewport) that will change bounds based on panel pinned state. */ children?: React.ReactNode; /** Component that displays center content (i.e. toolbars). Content is always bound by widget panels. */ centerContent?: React.ReactNode; toolSettings?: React.ReactNode; statusBar?: React.ReactNode; topPanel?: React.ReactNode; leftPanel?: React.ReactNode; rightPanel?: React.ReactNode; bottomPanel?: React.ReactNode; } /** Component that displays widgets in a standard layout. * @internal */ export declare function StandardLayout(props: StandardLayoutProps): React.JSX.Element; export {}; //# sourceMappingURL=StandardLayout.d.ts.map