import React, { RefObject } from 'react'; export * from './TimeConversionTooltip'; export declare type TooltipProps = { children: React.ReactNode; className?: string; position?: 'top left' | 'top center' | 'top right' | 'center left' | 'center' | 'center right' | 'bottom left' | 'bottom center' | 'bottom right'; } & ({ id: string; elementRef?: undefined; } | { id?: undefined; elementRef: RefObject; }); export declare function Tooltip({ children, className, id, elementRef, position }: TooltipProps): React.ReactPortal | null;