import { Position } from '@reach/popover'; import React from 'react'; import { MarginProps, TextColorProps } from 'styled-system'; export interface TooltipProps extends MarginProps, TextColorProps { /** Text to be displayed */ label: React.ReactNode; ariaLabel?: string; position?: Position; maxWidth?: string; disabled?: boolean; className?: string; id?: string; forceVisible?: boolean; } export interface TooltipHandle { toggle(): void; } export declare const TooltipPopup: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, { $visible: boolean; }, never>; export declare const Tooltip: import("styled-components").StyledComponent<(props: TooltipProps) => React.ReactElement, import("styled-components").DefaultTheme, {}, never>; export default Tooltip;