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