export interface SimpleChange { firstChange: boolean; previousValue: T; currentValue: T; isFirstChange: () => boolean; } export declare function OnChange(callback?: string): (target: any, key: PropertyKey) => void;