import { YUIComponent } from './component';

/** TimelineItem Component */
export declare class YTimelineItem extends YUIComponent {
  /**
   * determine the date show
   */
  timestamp: number | Date | { date: string; time: string };

  /**
   * custom node style
   */
  nodeStyle: object;

  /**
   * determine whether the node icon, use by Icon component
   */
  icon: string;

  /**
   * determine whether the tail color
   */
  tailColor: string;

  /**
   * determine whether the node status, match the specific icon
   */
  status: 'wating' | 'warnning' | 'completed' | 'processing';
}
