import React from 'react'; declare type View = 'fact' | 'forecast' | 'plan'; declare type Props = { monthWidth: number; graphStartDate: number; startDate: number; endDate: number; className?: string; color?: string; isActive?: boolean; isInactive?: boolean; view?: View; withMargin?: boolean; onClick?: React.MouseEventHandler; }; export declare const Line: React.ForwardRefExoticComponent>; export {};