import { Document, DocumentLoader } from './types.mjs'; import 'did-resolver'; declare const DATA_INTEGRITY_V2_URL = "https://w3id.org/security/data-integrity/v2"; declare const DID_V1_URL = "https://www.w3.org/ns/did/v1"; declare const VC_V1_URL = "https://www.w3.org/2018/credentials/v1"; declare const VC_V2_URL = "https://www.w3.org/ns/credentials/v2"; declare const BBS_V1_URL = "https://w3id.org/security/bbs/v1"; declare const BLS12381_2020_V1_URL = "https://w3id.org/security/suites/bls12381-2020/v1"; declare const JWS_V1_URL = "https://w3id.org/security/suites/jws-2020/v1"; declare const MULTIKEY_V1_URL = "https://w3id.org/security/multikey/v1"; declare const STATUS_LIST_2021_CREDENTIAL_URL = "https://w3id.org/vc/status-list/2021/v1"; declare const TR_CONTEXT_URL = "https://trustvc.io/context/transferable-records-context.json"; declare const OBLIGATION_RECORDS_CONTEXT_URL = "https://trustvc.io/context/obligation-records-context.json"; declare const RENDER_CONTEXT_URL = "https://trustvc.io/context/render-method-context.json"; declare const RENDER_CONTEXT_V2_URL = "https://trustvc.io/context/render-method-context-v2.json"; declare const ATTACHMENTS_CONTEXT_URL = "https://trustvc.io/context/attachments-context.json"; declare const QRCODE_CONTEXT_URL = "https://trustvc.io/context/qrcode-context.json"; declare const OPENCERTS_CONTEXT_URL = "https://trustvc.io/context/opencerts-context.json"; declare const BOE_CONTEXT_URL = "https://trustvc.io/context/bill-of-exchange.json"; declare const BOL_CONTEXT_URL = "https://trustvc.io/context/bill-of-lading.json"; declare const BOLC_CONTEXT_URL = "https://trustvc.io/context/bill-of-lading-carrier.json"; declare const COO_CONTEXT_URL = "https://trustvc.io/context/coo.json"; declare const INVOICE_CONTEXT_URL = "https://trustvc.io/context/invoice.json"; declare const PROMISSORY_NOTE_CONTEXT_URL = "https://trustvc.io/context/promissory-note.json"; declare const WAREHOUSE_RECEIPT_CONTEXT_URL = "https://trustvc.io/context/warehouse-receipt.json"; declare const contexts: { [key: string]: Document; }; declare const trContexts: { [key: string]: Document; }; declare const obligationRecordsContexts: { [key: string]: Document; }; declare const renderContexts: { [key: string]: Document; }; declare const renderContextsV2: { [key: string]: Document; }; declare const attachmentsContexts: { [key: string]: Document; }; declare const qrCodeContexts: { [key: string]: Document; }; declare const templateContexts: { [key: string]: Document; }; declare const CredentialContextVersion: { v1: string; v2: string; }; declare function getDocumentLoader(additionalContexts?: Record): Promise; export { ATTACHMENTS_CONTEXT_URL, BBS_V1_URL, BLS12381_2020_V1_URL, BOE_CONTEXT_URL, BOLC_CONTEXT_URL, BOL_CONTEXT_URL, COO_CONTEXT_URL, CredentialContextVersion, DATA_INTEGRITY_V2_URL, DID_V1_URL, INVOICE_CONTEXT_URL, JWS_V1_URL, MULTIKEY_V1_URL, OBLIGATION_RECORDS_CONTEXT_URL, OPENCERTS_CONTEXT_URL, PROMISSORY_NOTE_CONTEXT_URL, QRCODE_CONTEXT_URL, RENDER_CONTEXT_URL, RENDER_CONTEXT_V2_URL, STATUS_LIST_2021_CREDENTIAL_URL, TR_CONTEXT_URL, VC_V1_URL, VC_V2_URL, WAREHOUSE_RECEIPT_CONTEXT_URL, attachmentsContexts, contexts, getDocumentLoader, obligationRecordsContexts, qrCodeContexts, renderContexts, renderContextsV2, templateContexts, trContexts };