import { Options as PopperOptions } from '@popperjs/core'; import React from 'react'; import { ExternalStyles } from '../../styles'; export interface TooltipProps extends PopperOptions { text: string; style?: ExternalStyles; offset?: number; container?: Element; transitionDelay?: number; children: React.ReactElement; } export interface TooltipState { visible: boolean; } export declare function Tooltip(props: TooltipProps): JSX.Element; export declare namespace Tooltip { var defaultProps: Partial; }