import { type CommandModule } from 'yargs'; import { type Profile } from '../lib/cli-config.js'; import { type OutputItemOrListFlags } from '../lib/command/listing-io.js'; import { type SmartThingsCommandFlags } from '../lib/command/smartthings-command.js'; export type ProfileWithName = { name: string; profile: Profile; }; export type CommandArgs = SmartThingsCommandFlags & OutputItemOrListFlags & { verbose: boolean; name?: string; }; declare const cmd: CommandModule; export default cmd; //# sourceMappingURL=config.d.ts.map