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