import { type Argv, type CommandModule } from 'yargs'; import { type APICommandFlags } from '../../lib/command/api-command.js'; import { type FormatAndWriteItemFlags } from '../../lib/command/format.js'; export type CommandArgs = APICommandFlags & FormatAndWriteItemFlags & { location?: string[]; verbose: boolean; id?: string; newName?: string; }; export declare const builder: (yargs: Argv) => Argv; declare const cmd: CommandModule; export default cmd; //# sourceMappingURL=rename.d.ts.map