import { _PdfDecodeStream } from '../decode-stream';
/**
 * Provides a JPEG 2000 stream wrapper for reading raw JPX bytes from the underlying stream.
 *
 * @private
 */
export declare class _PdfJpxStream extends _PdfDecodeStream {
    stream: any;
    private maybeLength;
    private params;
    constructor(stream: any, maybeLength?: number, params?: any);
    readonly bytes: Uint8Array;
    readBlock(): void;
    readonly isAsyncDecoder: boolean;
    decodeImage(bytes?: Uint8Array): Uint8Array;
    readonly canAsyncDecodeImageFromBuffer: boolean;
}
