import { CommonArgs, ConfigArgs, EnvironmentArgs, TestingArgs, YargsCommandModule } from '../../types/Yargs.js'; type DeleteTestAccountArgs = CommonArgs & ConfigArgs & TestingArgs & EnvironmentArgs & { testAccount?: string | number; force?: boolean; }; declare const deleteTestAccountCommand: YargsCommandModule; export default deleteTestAccountCommand;