import { IApiKey } from '@metad/contracts'; import { Repository } from 'typeorm'; import { TenantOrganizationAwareCrudService } from '../core/crud'; import { ApiKey } from './api-key.entity'; export declare class ApiKeyService extends TenantOrganizationAwareCrudService { constructor(repository: Repository); create(entity: Partial): Promise; }