import { EventEmitter } from "events"; import * as configuration from "../configuration/index.js"; import * as events from "../events/index.js"; import { Command } from "./command.js"; export declare const DebugSubCommandValues: readonly ["activities", "ast", "images", "links", "linkTargets"]; export type DebugSubcommand = (typeof DebugSubCommandValues)[number]; export declare class Debug implements Command { emitter: EventEmitter; subcommand: DebugSubcommand | undefined; userConfig: configuration.APIData; constructor(userConfig: configuration.APIData, subcommand: DebugSubcommand | undefined); emit(name: events.Name, payload: events.Args): void; execute(): Promise; on(name: events.Name, handler: events.Handler): this; } //# sourceMappingURL=debug.d.ts.map