import { Type } from "./type";
/**
 * Represents status of loading an image
 */
export declare enum ImageLoadStatus {
    /**
     * Specifies that image loading is in unknown status
     */
    Unknown = 0,
    /**
     * Specifies that image loading is in progress
     */
    Loading = 1,
    /**
     * Specifies that image loading has completed
     */
    Completed = 2,
    /**
     * Specifies that image loading has failed
     */
    Failed = 3,
    /**
     * Specifies that image loading has been canceled
     */
    Canceled = 4
}
/**
 * @hidden
 */
export declare let ImageLoadStatus_$type: Type;
