UNPKG

matrix-react-sdk

Version:
17 lines (16 loc) 396 B
import React, { ReactNode } from "react"; export declare enum InfoTooltipKind { Info = "info", Warning = "warning" } interface TooltipProps { tooltip?: string; className?: string; kind?: InfoTooltipKind; children?: ReactNode; tabIndex?: number; } export default class InfoTooltip extends React.PureComponent<TooltipProps> { render(): React.ReactNode; } export {};