declare const formats: { readonly unknown: -1; readonly uint8: 0; readonly int8: 1; readonly uint16: 2; readonly int16: 3; readonly binary: 4; readonly rgba8: 5; }; export declare type PixelFormat = keyof typeof formats; export interface PixelFormatInfo { /** * Bytes per second. */ bpp: number; minLevel: number; maxLevel: number; minWidth: number; maxWidth: number; arrayClass: any; } export declare function pixelFormatInfo(type: PixelFormat): PixelFormatInfo; export {};