import { EventEmitter } from '@angular/core'; import { Customer, GetCustomerHistory, HistoryEntry, HistoryEntryType, TimelineDisplayType } from '@ishop/admin-ui/core'; export declare class CustomerHistoryComponent { customer: Customer.Fragment; history: GetCustomerHistory.Items[]; addNote: EventEmitter<{ note: string; }>; updateNote: EventEmitter; deleteNote: EventEmitter; note: string; readonly type: typeof HistoryEntryType; getDisplayType(entry: GetCustomerHistory.Items): TimelineDisplayType; getTimelineIcon(entry: GetCustomerHistory.Items): string | [string, string] | undefined; isFeatured(entry: GetCustomerHistory.Items): boolean; getName(entry: GetCustomerHistory.Items): string; addNoteToCustomer(): void; }