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