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