import { CmsPublishMode } from '@hubspot/local-dev-lib/types/Files'; import { CommonArgs, ConfigArgs, YargsCommandModule } from '../../types/Yargs.js'; type ConfigSetArgs = CommonArgs & ConfigArgs & { defaultCmsPublishMode?: CmsPublishMode; allowUsageTracking?: boolean; httpTimeout?: string; allowAutoUpdates?: boolean; autoOpenBrowser?: boolean; }; declare const configSetCommand: YargsCommandModule; export default configSetCommand;