import { Command } from '@deepkit/app'; import { HttpRouter } from '@deepkit/http'; /** * @description Prints debugging information about the router. */ export declare class DebugRouterController implements Command { protected router: HttpRouter; constructor(router: HttpRouter); execute(): Promise; }