import React, { FC } from 'react'; import { SizeType } from '../../util/global-props'; import './tooltip.component.scss'; export declare type TooltipPropsType = { className?: string; children: React.ReactNode; message?: React.ReactNode; title?: string; disabled?: boolean; timeout?: number; manual?: boolean; margin?: SizeType; menuWidth?: string; position?: 'auto-vertical-left' | 'auto-vertical-center' | 'auto-vertical-right' | 'bottom-left' | 'bottom-center' | 'bottom-right' | 'top-left' | 'top-center' | 'top-right'; style?: React.CSSProperties; }; export declare const Tooltip: FC;