export declare const decodeImageBitmap: (imageBuffer: Uint8Array) => Promise<{
    data: Uint8Array;
    width: number;
    height: number;
}>;
