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