import { LogService, AppService } from "@wocker/core"; export declare class DebugController { protected readonly appService: AppService; protected readonly logService: LogService; constructor(appService: AppService, logService: LogService); debug(): Promise; setDebug(status: string): Promise; testLog(level: string, args: string[]): Promise; debugCompletion(): Promise; getLevels(): string[]; }