/** @format */
/**
 * Enum representing different PVR (PowerVR) texture formats.
 */
export declare enum PvrFormat {
    /**
     * Automatic format selection.
     */
    auto = 0,
    /**
     * RGB format with 2 bits per channel.
     */
    rgb2 = 1,
    /**
     * RGBA format with 2 bits per channel.
     */
    rgba2 = 2,
    /**
     * RGB format with 4 bits per channel.
     */
    rgb4 = 3,
    /**
     * RGBA format with 4 bits per channel.
     */
    rgba4 = 4
}
