import { Dispatch, SetStateAction } from "react"; export interface DecryptedField { profilePhoto: string; firstName?: string; lastName?: string; userName?: string; name?: string; email?: string; phoneNumber?: string; } export interface Certifier { publicKey: string; icon: string; name: string; } export interface IdentityProps { identityKey: string; themeMode?: "light" | "dark"; } export interface IdentityStore { identities: Identity[]; fetchIdentities: (query: string, setIsLoading: Dispatch>) => Promise; } export interface Identity { name: string; avatarURL: string; abbreviatedKey: string; identityKey: string; badgeIconURL: string; badgeLabel: string; badgeClickURL: string; } //# sourceMappingURL=metanet-identity-types.d.ts.map