import { EventBase } from '@awayjs/core';
import { ImageBase } from '../image/ImageBase';
export declare class ImageEvent extends EventBase {
    /**
     *
     */
    static INVALIDATE_MIPMAPS: string;
    private _image;
    /**
     * Create a new ImageEvent
     * @param type The event type.
     * @param image The instance of the image being updated.
     */
    constructor(type: string, image: ImageBase);
    /**
     * The image of the material.
     */
    get image(): ImageBase;
}
//# sourceMappingURL=ImageEvent.d.ts.map