import type { InjectionKey } from 'vue'; import type { LineType } from './types'; export interface TimelineContext { reverse: boolean; parentCls: string; count: number; lineType: LineType; } export declare const timelineInjectionKey: InjectionKey;