export interface TooltipProps {
    /** Text to display to prompt user */
    openText: string;
    /** Text to display as close message. */
    closeText: string;
    /** Tooltip Message */
    message: string;
    /** Unique ID of tooltip */
    controlId: string;
    /** Position of tip ('' or above) */
    location?: string;
    /** description on link for screen readers */
    info: string;
    /** SVG icon */
    openIcon?: boolean;
    /** Title of opened window */
    title?: string;
    /** Heading level of title. Default h2 */
    level?: number;
}
declare const Tooltip: {
    (tooltip: TooltipProps): any;
    defaultValue: {
        level: number;
    };
};
export default Tooltip;
