import { type CommandModule } from 'yargs'; import { type APICommandFlags } from '../../lib/command/api-command.js'; import { type InputItemFlags } from '../../lib/command/input-item.js'; export type CommandArgs = APICommandFlags & InputItemFlags & { id?: string; command?: string; }; declare const cmd: CommandModule; export default cmd; //# sourceMappingURL=commands.d.ts.map