import React from 'react';
import { TdTimelineProps } from './type';
declare const StepsContext: React.Context<{
    theme: TdTimelineProps["theme"];
    reverse: TdTimelineProps["reverse"];
    itemsStatus: string[];
    layout: TdTimelineProps["layout"];
    globalAlign?: TdTimelineProps["labelAlign"];
    mode?: TdTimelineProps["mode"];
}>;
export default StepsContext;
