import type { RegistryHandler } from './types.js'; /** * DCC legacy registry JSON: a map of DID → issuer metadata under `registry`. * * @see https://digitalcredentials.github.io/sandbox-registry/registry.json */ export interface DccLegacyRegistryBody { registry: Record; } /** * Fetch a DCC legacy registry JSON file, cache by URL, and resolve whether `did` * appears in `body.registry`. */ export declare const lookupDccLegacy: RegistryHandler; //# sourceMappingURL=dcc-legacy-handler.d.ts.map