import { ReactElement, ReactNode } from 'react'; export type TooltipPlacement = 'top' | 'left' | 'right' | 'bottom'; interface InfoTooltipProps { description: string; children: ReactNode; id?: string; title?: string; placement?: TooltipPlacement; enterDelay?: number; enterNextDelay?: number; } export declare const InfoTooltip: ({ id, title, description, placement, children, enterDelay, enterNextDelay, }: InfoTooltipProps) => ReactElement; export {}; //# sourceMappingURL=InfoTooltip.d.ts.map