import { AuthService } from './auth.service'; import { CreateKeyDto } from './dto/management/create-key.dto'; export declare class TenantController { private readonly authService; constructor(authService: AuthService); createKey(req: any, dto: CreateKeyDto): Promise; getKeys(req: any): Promise; getMe(req: any): Promise; }