import React from 'react'; export interface DTimelineItem { content: [React.ReactNode, React.ReactNode]; icon?: React.ReactNode; status?: 'completed' | 'active' | 'wait' | 'error'; } export interface DTimelineProps extends Omit, 'children'> { dList: T[]; dVertical?: boolean; dLineSize?: number; } export declare function DTimeline(props: DTimelineProps): JSX.Element | null;