/** @packageDocumentation * @module Message */ import "./Hyperlink.scss"; import * as React from "react"; import { CommonProps } from "@bentley/ui-core"; /** Properties of [[MessageHyperlink]] component. * @beta */ export interface MessageHyperlinkProps extends CommonProps { /** Hyperlink text. */ children?: string; /** Function called when hyperlink is clicked. */ onClick?: () => void; } /** Hyperlink component used in [[Message]] component. * @beta */ export declare class MessageHyperlink extends React.PureComponent { render(): JSX.Element; } //# sourceMappingURL=Hyperlink.d.ts.map