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 & { idOrIndex?: string; location?: string[]; verbose: boolean; }; declare const cmd: CommandModule; export default cmd; //# sourceMappingURL=installedschema.d.ts.map