import { LookupResult } from '@digitalcredentials/issuer-registry-client';
import { VerificationResponse } from './types/result.js';
/**
 * Checks to see if a VC's issuer appears in any of the known DID registries.
 *
 * @returns An object containing a list of the names of the DID registries in
 * which the issuer appears and a list of registries that couldn't be loaded
 */
export declare function getTrustedRegistryListForIssuer({ issuer, knownDIDRegistries }: {
    issuer: string | any;
    knownDIDRegistries: object;
}): Promise<LookupResult>;
export declare function addTrustedIssuersToVerificationResponse({ issuer, knownDIDRegistries, verificationResponse }: {
    issuer: string | any;
    knownDIDRegistries: object;
    verificationResponse: VerificationResponse;
}): Promise<void>;
//# sourceMappingURL=issuerRegistries.d.ts.map