import { type CommandModule } from 'yargs'; import { type APIOrganizationCommandFlags } from '../../lib/command/api-organization-command.js'; import { type LambdaAuthFlags } from '../../lib/command/common-flags.js'; import { InputAndOutputItemFlags } from '../../lib/command/input-and-output-item.js'; export type CommandArgs = APIOrganizationCommandFlags & LambdaAuthFlags & InputAndOutputItemFlags & { authorize?: boolean; id?: string; }; declare const cmd: CommandModule; export default cmd; //# sourceMappingURL=update.d.ts.map