UNPKG

316 BTypeScriptView Raw
1import { FunctionComponent, ReactNode } from 'react';
2export interface TooltipMessageProps {
3 title?: ReactNode;
4 desc?: ReactNode;
5 links?: {
6 title: string;
7 href?: string;
8 onClick?: () => void;
9 }[];
10}
11export declare const TooltipMessage: FunctionComponent<TooltipMessageProps>;