import React from 'react'; import { Position } from '@consta/uikit/Popover'; import { Group } from "../../index"; declare type Props = { group: Group; monthWidth: number; isActive: boolean; isAnyRowActive: boolean; graphStartDate: number; withMargin: boolean; tooltipPosition: Position; onClick: React.MouseEventHandler; onTooltipRequestClose: () => void; }; export declare const GroupLines: React.FC; export {};