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