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