import React, { RefObject } from 'react'; import { Position } from '@consta/uikit/Popover'; import { Item } from "../../index"; declare type Props = { anchorRef: RefObject; color: string; position: Position; plan?: Item; fact?: Item; forecast?: Item; title?: string; comment?: string; onRequestClose: () => void; }; export declare const RoadmapTooltip: React.FC; export {};