import { CommonArgs, ConfigArgs, AccountArgs, EnvironmentArgs, YargsCommandModule } from '../../types/Yargs.js'; type HubdbClearArgs = CommonArgs & ConfigArgs & AccountArgs & EnvironmentArgs & { tableId?: number; dest?: string; }; declare const hubdbClearCommand: YargsCommandModule; export default hubdbClearCommand;