import { JWK } from "jose"; declare const getPublicJWKFromPublicHex: (hexPublicKey: string, kid?: string, method?: string) => JWK; declare const getPublicJWKFromPrivateHexDidKey: (hexPrivateKey: string, kid?: string) => JWK; declare const getPublicJWKFromPrivateHex: (hexPrivateKey: string, kid?: string, method?: string) => JWK; declare const getThumbprintFromJwk: (jwk: JWK) => string; declare const getThumbprintFromJwkDidKey: (jwk: JWK) => string; declare const getThumbprint: (hexPrivateKey: string, method: string) => string; export { getThumbprint, getPublicJWKFromPrivateHex, getPublicJWKFromPublicHex, getPublicJWKFromPrivateHexDidKey, getThumbprintFromJwk, getThumbprintFromJwkDidKey, };