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