import { FC, SVGAttributes } from 'react'; import { LineConfig, MarkerConfig } from 'eazychart-core/src/types'; export interface SegmentsProps extends SVGAttributes { xDomainKey: string; yDomainKey: string; line?: LineConfig; marker?: MarkerConfig; } export declare const Segments: FC;