import type { IGroupGraphicAttribute, ILineGraphicAttribute, ISymbolGraphicAttribute, ITextGraphicAttribute } from '@visactor/vrender-core'; export interface TimelineAttrs extends IGroupGraphicAttribute { width: number; times: { label: string; desc?: string; }[]; labelSpace?: number; symbolStyle?: Partial; activeSymbolStyle?: Partial; lineStyle?: Partial; activeLineStyle?: Partial; labelStyle?: Partial; activeLabelStyle?: Partial; pointLayoutMode?: 'space-around' | 'space-between'; clipRange?: number; animation?: boolean; }