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