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