import { type CommandModule } from 'yargs'; import { type APICommandFlags } from '../../lib/command/api-command.js'; import { type OutputItemOrListFlags } from '../../lib/command/listing-io.js'; export type CommandArgs = APICommandFlags & OutputItemOrListFlags & { location?: string; verbose: boolean; idOrIndex?: string; }; declare const cmd: CommandModule; export default cmd; //# sourceMappingURL=rooms.d.ts.map