/** @format */
/**
 * Enum representing different types of icons.
 */
export declare enum IcoType {
    /**
     * Represents an invalid icon type.
     */
    invalid = 0,
    /**
     * Represents an ICO icon type.
     */
    ico = 1,
    /**
     * Represents a CUR icon type.
     */
    cur = 2
}
/**
 * Constant representing the length of the IcoType enum.
 */
export declare const IcoTypeLength = 3;
