import React, { ReactNode } from 'react'; export type ToolTipProp = { text?: string | ReactNode | ReactNode[]; width?: number; className?: string; position?: 'bottom' | 'right' | 'left' | 'top'; children?: React.ReactNode; preLine?: boolean; }; declare const Tooltip: (props: ToolTipProp) => React.JSX.Element; export default Tooltip;