import { TooltipAlignment } from './tooltip.types';
import { Sizes } from '../../constants';
export interface TooltipProps {
    text: string;
    children?: React.ReactNode;
    alignment?: TooltipAlignment;
    size?: Sizes;
    tooltipStyle?: React.CSSProperties;
    tooltipLabelStyle?: React.CSSProperties;
}
declare const _default: import('react').ForwardRefExoticComponent<Pick<TooltipProps, keyof TooltipProps> & {
    theme?: import('@emotion/react').Theme;
}>;
export default _default;
//# sourceMappingURL=Tooltip.d.ts.map