import { KeyBinding } from '../keyBinding'; import { Disclosure } from './disclosures'; import { ExpandedJwt } from '../jwt'; export type ExpandedSdJwt = Record, P extends Record = Record> = ExpandedJwt & { disclosures?: Array; keyBinding?: KeyBinding; }; export declare const sdJwtFromCompact: = Record, P extends Record = Record>(compact: string) => ExpandedSdJwt;