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