export interface ICredentialEntriesStorage { getCredentialData(credentialId: string, subjectId: string, resolverId: string, storageOptions: Record): Promise; setCredentialData(credentialId: string, subjectId: string, resolverId: string, data: string, storageOptions: Record): Promise; deleteCredentialData?(credentialId: string, subjectId: string, resolverId: string, storageOptions: Record): Promise; }