import { type CommandModule } from 'yargs'; import { AppType, AppClassification } from '@smartthings/core-sdk'; import { type APICommandFlags } from '../lib/command/api-command.js'; import { type OutputItemOrListFlags } from '../lib/command/listing-io.js'; export type CommandArgs = APICommandFlags & OutputItemOrListFlags & { type?: AppType; classification?: AppClassification[]; verbose: boolean; idOrIndex?: string; }; declare const cmd: CommandModule; export default cmd; //# sourceMappingURL=apps.d.ts.map