export declare class SimpleChange { previousValue: T; currentValue: T; firstChange: boolean; constructor(previousValue: any, currentValue: any, firstChange: boolean); /** * Check whether the new value is the first value assigned. */ isFirstChange(): boolean; } export type SimpleChanges = { [key in keyof T]?: SimpleChange; };