import { Buffer } from 'node:buffer';
export declare class OdtProcessor {
    private contentAddressable;
    private contentXml;
    private stylesXml;
    private files;
    private fileNameMap;
    private xmlMap;
    constructor(contentAddressable?: boolean);
    load(odtPath: string): Promise<void>;
    loadFromBuffer(input: Buffer): Promise<void>;
    processMathMl(): Promise<void>;
    unzipAssets(destinationPath: string, destinationName: string): Promise<void>;
    getContentXml(): string;
    getStylesXml(): string;
    getFileNameMap(): {
        [name: string]: string;
    };
    getXmlMap(): {
        [name: string]: string;
    };
}
//# sourceMappingURL=OdtProcessor.d.ts.map