/** @packageDocumentation * @module Footer */ import "./Dialog.scss"; import * as React from "react"; import type { CommonProps } from "@itwin/core-react"; /** Properties of [[ToolAssistanceDialog]] component. * @internal */ export interface ToolAssistanceDialogProps extends CommonProps { /** Items and separators of tool assistance. I.e. [[ToolAssistanceItem]], [[ToolAssistanceSeparator]] */ children?: React.ReactNode; /** Dialog title. */ title?: string; /** Title bar buttons. I.e. [[TitleBarButton]] */ buttons?: React.ReactNode; } /** Tool assistance dialog used with [[ToolAssistance]] component. * @note This is a presentational component and should be aligned with [[ToolAssistance]] component. * I.e. use [[FooterPopup]] to handle alignment. * @internal */ export declare class ToolAssistanceDialog extends React.PureComponent { render(): React.JSX.Element; } //# sourceMappingURL=Dialog.d.ts.map