/** * Bundle assembler — fetches all attestation components and packages them * into an AttestationBundle for verification. */ import type { AttestationBundle } from './types.js'; /** * Assemble a complete attestation bundle by fetching all components * directly from the enclave and public infrastructure. * Each network call is retried up to 2 times on transient failure. * * @throws FetchError on I/O failure (after retries) * @throws AttestationError if the attestation report cannot be parsed */ export declare function assembleAttestationBundle(enclaveHost: string, configRepo: string): Promise; //# sourceMappingURL=bundle.d.ts.map