import { CommonArgs, YargsCommandModule } from '../../types/Yargs.js'; type CreateTestAccountConfigArgs = CommonArgs & { name?: string; description?: string; path?: string; }; declare const createTestAccountConfigCommand: YargsCommandModule; export default createTestAccountConfigCommand;