import { ApiKey } from '../../database/entities/ApiKey'; declare const _default: { createApiKey: (keyName: string, workspaceId?: string) => Promise; deleteApiKey: (id: string, workspaceId?: string) => Promise; getAllApiKeys: (workspaceId?: string, autoCreateNewKey?: boolean) => Promise; updateApiKey: (id: string, keyName: string, workspaceId?: string) => Promise; verifyApiKey: (paramApiKey: string) => Promise; getApiKey: (apiKey: string) => Promise; importKeys: (body: any) => Promise; }; export default _default;