import type { JsonObject } from '../../../../types'; import type { W3cJsonCredential } from '../credential/W3cJsonCredential'; export interface W3cJsonPresentation { '@context': Array; id?: string; type: Array; holder: string | { id?: string; }; verifiableCredential: Array; [key: string]: unknown; }