import * as jsonld from './jsonld'; import * as jsonldSignatures from './jsonld-signatures'; import * as vc from './vc'; export declare const vcLibraries: { jsonldSignatures: typeof jsonldSignatures; jsonld: { compact(document: any, context: any, options?: any): any; fromRDF(document: any): any; frame(document: any, revealDocument: any, options?: any): any; canonize(document: any, options?: any): any; expand(document: any, options?: any): any; getValues(document: any, key: string): any; addValue(document: any, key: string, value: any): void; default: jsonld.JsonLd; }; vc: { issue(options: any): Promise>; verifyCredential(options: any): Promise; createPresentation(options: any): Promise>; signPresentation(options: any): Promise>; verify(options: any): Promise; default: vc.VC; }; };