import { Changes } from './ng-changes'; interface InputChanges { isChanged(): boolean; ifChanged(callback: () => void): void; } export declare function checkInput(prop: Changes): InputChanges; export declare function ifChanged(prop: Changes, callback: (value: any) => void): void; export declare function hasChanged(prop: Changes): boolean; export {};