import { CommonArgs, ConfigArgs, YargsCommandModule } from '../../types/Yargs.js'; type AccountRemoveArgs = CommonArgs & ConfigArgs & { account?: string; }; declare const accountRemoveCommand: YargsCommandModule; export default accountRemoveCommand;