import * as React from 'react';
import { Box, PropsOf } from '../box';
import { UseTooltipProps } from './hooks';
export declare type TooltipProps = PropsOf<typeof Box> & UseTooltipProps & {
    children?: React.ReactNode;
    label?: string;
    'aria-label'?: string;
    shouldWrapChildren?: boolean;
    hasArrow?: boolean;
};
export declare function Tooltip(props: TooltipProps): JSX.Element;
