export interface TextureFormatSupport {
    norm16: boolean;
    norm16Linear: boolean;
    float: boolean;
    floatLinear: boolean;
    halfFloat: boolean;
    halfFloatLinear: boolean;
}
export declare function getSupportedTextureFormats(): TextureFormatSupport | null;
