import { CommonArgs, ConfigArgs, AccountArgs, EnvironmentArgs, TestingArgs, YargsCommandModule } from '../../types/Yargs.js'; export type SchemaUpdateArgs = CommonArgs & ConfigArgs & AccountArgs & EnvironmentArgs & TestingArgs & { name?: string; path: string; }; declare const updateSchemaCommand: YargsCommandModule; export default updateSchemaCommand;