/** @packageDocumentation * @module Message */ import "./TitleBar.scss"; import * as React from "react"; import type { CommonProps } from "@itwin/core-react"; /** Properties of [[TitleBar]] component. * @internal */ export interface TitleBarProps extends CommonProps { /** Title bar buttons. I.e. [[TitleBarButton]] */ children?: React.ReactNode; /** Title bar title. */ title?: string; } /** Title bar of [[Dialog]] component. * @note Use [StatusBarDialog.TitleBar]($appui-react) instead * @internal */ export declare function TitleBar(props: TitleBarProps): React.JSX.Element; //# sourceMappingURL=TitleBar.d.ts.map