import { OnInit } from '@angular/core'; import { ID } from '../core'; import { MatDialogRef } from '@angular/material/dialog'; import { SCHistoryTimelineService } from './sc-history-timeline.service'; import * as i0 from "@angular/core"; export interface SCHistoryTimeline { id: ID; status_title: string; status_date_time: string; status_extend: StatusExtend; status_user: StatusUser; } export interface StatusExtend { status_color: string; status_icon: string; status_extend_type: string; } export interface StatusUser { first_name: string; last_name: string; username: string; } export declare class SCHistoryTimelineComponent implements OnInit { dialogRef: MatDialogRef; data: any; service: SCHistoryTimelineService; histories: SCHistoryTimeline[]; constructor(dialogRef: MatDialogRef, data: any, service: SCHistoryTimelineService); ngOnInit(): void; close(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }