import { AcmeService } from '../Connection'; import { E2eiEnrollment, Nonce } from '../E2EIService.types'; interface GetCertificateParams { identity: E2eiEnrollment; connection: AcmeService; nonce: Nonce; certificateUrl: string; } export declare const getCertificate: ({ certificateUrl, connection, identity, nonce }: GetCertificateParams) => Promise<{ certificate: string; nonce: string; }>; export {}; //# sourceMappingURL=Certificate.d.ts.map