import { ApiKey } from '../../database/entities/ApiKey'; import { LoggedInUser } from '../../enterprise/Interface.Enterprise'; /** * Get all API keys for an organization * Returns all API keys across all workspaces in the organization */ declare function getAllApiKeysByOrganization(organizationId: string): Promise; declare const _default: { createApiKey: (user: LoggedInUser, keyName: string, permissions: string[]) => Promise; deleteApiKey: (id: string, workspaceId: string) => Promise; getAllApiKeys: (user: LoggedInUser, page?: number, limit?: number) => Promise; getAllApiKeysByOrganization: typeof getAllApiKeysByOrganization; updateApiKey: (user: LoggedInUser, id: string, keyName: string, permissions: string[]) => Promise; verifyApiKey: (paramApiKey: string) => Promise; getApiKey: (apiKey: string) => Promise; getApiKeyById: (apiKeyId: string) => Promise; }; export default _default;