import type { ServiceProvider } from "./types.js"; /** * PGP Key service provider * * Users prove ownership of a PGP key by clearsigning a proof message * containing their DID and fingerprint, then hosting it at a URL. * The claim URI format is: pgp:https://... * * Supported proof hosting: * - GitHub Gists (fetches via API) * - Tangled Strings (fetches raw content) * - Any other HTTPS URL (fetches as plain text) */ declare const pgp: ServiceProvider; export default pgp; //# sourceMappingURL=pgp.d.ts.map