import React from 'react';
import './Tooltip.scss';
interface TooltipProps {
content: string;
ariaName: string;
position?: 'bottomCenter' | 'bottomLeft' | 'bottomRight' | 'topCenter' | 'topLeft' | 'topRight';
}
export declare const Tooltip: React.FC<TooltipProps>;
export {};