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