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'; export type CommandArgs = APIOrganizationCommandFlags & InputAndOutputItemFlags & { name?: string; location?: string; room?: string; deviceProfile?: string; deviceProfileFile?: string; local: boolean; hub?: string; driver?: string; }; declare const cmd: CommandModule; export default cmd; //# sourceMappingURL=create.d.ts.map