import { Attachments } from "./attachments.ts";
export interface AttachmentsReaderOptions {
    version?: number;
}
export declare class AttachmentsReader {
    #private;
    constructor(input: Uint8Array, options?: AttachmentsReaderOptions);
    get bytesRead(): number;
    readAttachments(): Attachments | null;
}
