import { type CommandModule } from 'yargs'; import { type LambdaAuthFlags } from '../../lib/command/common-flags.js'; import { type SmartThingsCommandFlags } from '../../lib/command/smartthings-command.js'; export type CommandArgs = SmartThingsCommandFlags & LambdaAuthFlags & { arn?: string; }; declare const cmd: CommandModule; export default cmd; //# sourceMappingURL=authorize.d.ts.map