import { Credential } from '../../database/entities/Credential'; declare const _default: { createCredential: (requestBody: any) => Promise; deleteCredentials: (credentialId: string) => Promise; getAllCredentials: (paramCredentialName: any, workspaceId?: string) => Promise[]>; getCredentialById: (credentialId: string, workspaceId?: string) => Promise; updateCredential: (credentialId: string, requestBody: any) => Promise; }; export default _default;