import { Type } from "./type";
import { NotifyCollectionChangedEventArgs } from "./NotifyCollectionChangedEventArgs";
/**
 * @hidden
 */
export interface INotifyCollectionChanged {
    collectionChanged: (sender: any, e: NotifyCollectionChangedEventArgs) => void;
}
/**
 * @hidden
 */
export declare let INotifyCollectionChanged_$type: Type;
