import { type CommandModule } from 'yargs'; import { type APICommandFlags } from '../../lib/command/api-command.js'; import { type InputAndOutputItemFlags } from '../../lib/command/input-and-output-item.js'; export type CommandArgs = APICommandFlags & InputAndOutputItemFlags & { name?: string; location?: string; room?: string; prototype?: string; local?: string; hub?: string; }; declare const cmd: CommandModule; export default cmd; //# sourceMappingURL=create-standard.d.ts.map