import { PDFServicesJobResult } from "./PDFServicesJobResult"; import { Asset } from "../../io/Asset"; /** * This class encapsulates the result of {@link RemoveProtectionJob}. */ export declare class RemoveProtectionResult implements PDFServicesJobResult { private readonly _asset; /** * Constructs a new `RemoveProtectionResult` instance * * @param asset - The result asset */ constructor(asset: Asset); /** * Returns the result {@link Asset} * * @returns {@link Asset} */ get asset(): Asset; }