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