import { ProviderType } from "./provider.entity"; export declare class CredentialEntity { id: string; clientId: string; label: string; type: ProviderType; provider: string; country: string; isDefault: boolean; authorization?: Record; [x: string]: any; static getId(credential: CredentialEntity): any; static getSecret(credentialEntity: CredentialEntity, key: string): string | null; }