import { AccountArgs, CommonArgs, ConfigArgs, EnvironmentArgs, YargsCommandModule } from '../../types/Yargs.js'; export type ListArgs = CommonArgs & ConfigArgs & EnvironmentArgs & AccountArgs & { path: string; }; declare const cmsListCommand: YargsCommandModule; export default cmsListCommand;