/** @packageDocumentation * @module MessageCenter */ import "./Dialog.scss"; import * as React from "react"; import type { CommonProps } from "@itwin/core-react"; /** Properties of [[MessageCenterDialog]] component. * @internal */ export interface MessageCenterDialogProps extends CommonProps { /** Title bar buttons. I.e. [[TitleBarButton]] */ buttons?: React.ReactNode; /** Messages of message center. I.e. [[MessageCenterMessage]] */ children?: React.ReactNode; prompt?: string; /** Tabs of message center. See [[MessageCenterTab]] */ tabs?: React.ReactNode; /** Title of title bar. */ title?: string; } /** Message center dialog used with [[MessageCenter]] component. * @note This is a presentational component and should be aligned with [[MessageCenter]] component. * I.e. use [[FooterPopup]] to handle alignment. * @internal */ export declare class MessageCenterDialog extends React.PureComponent { render(): JSX.Element; } //# sourceMappingURL=Dialog.d.ts.map