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