import { ICredentialEntriesStorage } from './storage-interface'; import { DynamicCredentialEntryRepository } from '../../database/repositories/dynamic-credential-entry.repository'; import { CredentialResolverHandle } from '@n8n/decorators'; export declare class DynamicCredentialEntryStorage implements ICredentialEntriesStorage { private readonly dynamicCredentialEntryRepository; constructor(dynamicCredentialEntryRepository: DynamicCredentialEntryRepository); getCredentialData(credentialId: string, subjectId: string, resolverId: string, _: Record): Promise; setCredentialData(credentialId: string, subjectId: string, resolverId: string, data: string, _: Record): Promise; deleteCredentialData(credentialId: string, subjectId: string, resolverId: string, _: Record): Promise; deleteAllCredentialData(handle: CredentialResolverHandle): Promise; }