import { Publication } from "../models/publication"; import { Link } from "../models/publication-link"; import { IStreamAndLength } from "@evidentpoint/r2-utils-js/dist/es5/src/_utils/zip/zip"; import { ITransformer } from "./transformer"; export declare class TransformerObfAdobe implements ITransformer { supports(_publication: Publication, link: Link): boolean; transformStream(publication: Publication, link: Link, stream: IStreamAndLength, _isPartialByteRangeRequest: boolean, _partialByteBegin: number, _partialByteEnd: number): Promise; private transformBuffer; }