import { Transform } from '../base/Transform'; import { EventBase } from './EventBase'; export declare class TransformEvent extends EventBase { private _transform; /** * */ static INVALIDATE_MATRIX3D: string; /** * */ static INVALIDATE_COLOR_TRANSFORM: string; /** * * @returns {Transform} */ get transform(): Transform; constructor(type: string, transform: Transform); /** * Clones the event. * @return An exact duplicate of the current object. */ clone(): TransformEvent; } //# sourceMappingURL=TransformEvent.d.ts.map