import React from 'react';
import type { TooltipProps } from '../../core/types';
type Props = Exclude<TooltipProps, 'arrowPosition'> & {
arrowPosition?: 'left' | 'right' | 'center';
};
export declare const Tooltip: React.NamedExoticComponent<React.PropsWithChildren<Props>>;
export {};