export interface SimpleChange { firstChange: boolean; previousValue: T; currentValue: T; isFirstChange: () => boolean; } export declare function OnChange(callback: (value: T, simpleChange?: SimpleChange) => void): (target: any, key: PropertyKey) => void; //# sourceMappingURL=on-change.decorator.d.ts.map