export class AnimationNotificationDefinition {
    /**
     * Event name to be dispatched during the notification
     * @type {string}
     */
    event: string;
    /**
     * Data to be sent with the event
     * @type {*}
     */
    data: any;
    /**
     *
     * @param {AnimationNotificationDefinition} other
     * @returns {boolean}
     */
    equals(other: AnimationNotificationDefinition): boolean;
    /**
     * @returns {number}
     */
    hash(): number;
}
//# sourceMappingURL=AnimationNotificationDefinition.d.ts.map