import { Identity, TrustLookupResult } from "../types"; /** * Given the result of a Signia lookup request, * the identity information to display should be parsed out depending on the CertificateType. * * @param {SigniaLookupResult} identityToParse the result of a Signia identity lookup request that needs to be parsed * @returns */ declare const parseIdentity: (identityToParse: TrustLookupResult) => Identity; export default parseIdentity; //# sourceMappingURL=parseIdentity.d.ts.map