/** @packageDocumentation * @module Message */ import "./TitleBar.scss"; import * as React from "react"; import { CommonProps } from "@bentley/ui-core"; /** Properties of [[TitleBar]] component. * @beta */ export interface TitleBarProps extends CommonProps { /** Title bar buttons. I.e. [[TitleBarButton]] */ children?: React.ReactNode; /** Title bar title. */ title?: string; } /** Title bar of [[Dialog]] component. * @beta */ export declare class TitleBar extends React.PureComponent { render(): JSX.Element; } //# sourceMappingURL=TitleBar.d.ts.map