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