import { ReactNode, ReactElement } from 'react';
type Props = {
    children: ReactElement<any>;
    value?: ReactNode;
    position?: 'top-start' | 'top' | 'top-end' | 'right-start' | 'right' | 'right-end' | 'bottom-start' | 'bottom' | 'bottom-end' | 'left-start' | 'left' | 'left-end';
};
declare function Tooltip({ value, position, children }: Props): import("react/jsx-runtime").JSX.Element;
export { Tooltip };
export type { Props as TooltipProps };
