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 class Static implements Command { emitter: EventEmitter; userConfig: configuration.APIData; constructor(userConfig: configuration.APIData); emit(name: events.Name, payload: events.Args): void; execute(): Promise; on(name: events.Name, handler: events.Handler): this; } //# sourceMappingURL=static.d.ts.map