import React from 'react';
import { Theme } from '@plurid/plurid-themes';
export interface TooltipProperties {
    tool: string | React.FC<any>;
    tip: string | React.FC<any>;
    indicator?: boolean;
    /**
     * Render the `tool` as a circle.
     */
    icon?: boolean;
    theme?: Theme;
    style?: React.CSSProperties;
    className?: string;
}
declare const Tooltip: React.FC<TooltipProperties>;
export default Tooltip;
