export declare const GL_TEXTURE_CUBE_MAP_POSITIVE_X = 34069;
export declare const GL_TEXTURE_CUBE_MAP_NEGATIVE_X = 34070;
export declare const GL_TEXTURE_CUBE_MAP_POSITIVE_Y = 34071;
export declare const GL_TEXTURE_CUBE_MAP_NEGATIVE_Y = 34072;
export declare const GL_TEXTURE_CUBE_MAP_POSITIVE_Z = 34073;
export declare const GL_TEXTURE_CUBE_MAP_NEGATIVE_Z = 34074;
export type ImageTextureCubeFace = '+X' | '-X' | '+Y' | '-Y' | '+Z' | '-Z';
export type ImageTextureCubeDirectionAlias = 'right' | 'left' | 'top' | 'bottom' | 'front' | 'back';
export declare const IMAGE_TEXTURE_CUBE_FACES: readonly [{
    readonly face: 34069;
    readonly name: "+X";
    readonly direction: "right";
    readonly axis: "x";
    readonly sign: "positive";
}, {
    readonly face: 34070;
    readonly name: "-X";
    readonly direction: "left";
    readonly axis: "x";
    readonly sign: "negative";
}, {
    readonly face: 34071;
    readonly name: "+Y";
    readonly direction: "top";
    readonly axis: "y";
    readonly sign: "positive";
}, {
    readonly face: 34072;
    readonly name: "-Y";
    readonly direction: "bottom";
    readonly axis: "y";
    readonly sign: "negative";
}, {
    readonly face: 34073;
    readonly name: "+Z";
    readonly direction: "front";
    readonly axis: "z";
    readonly sign: "positive";
}, {
    readonly face: 34074;
    readonly name: "-Z";
    readonly direction: "back";
    readonly axis: "z";
    readonly sign: "negative";
}];
export type ImageCubeTexture = Record<number, any>;
//# sourceMappingURL=image-texture-cube.d.ts.map