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