import { CmsPublishMode } from '@hubspot/local-dev-lib/types/Files'; import { AccountArgs, CommonArgs, ConfigArgs, EnvironmentArgs, YargsCommandModule } from '../../types/Yargs.js'; export type FetchCommandArgs = { src: string; dest?: string; cmsPublishMode?: CmsPublishMode; staging?: boolean; assetVersion?: number; overwrite?: boolean; } & ConfigArgs & AccountArgs & EnvironmentArgs & CommonArgs; declare const fetchCommand: YargsCommandModule; export default fetchCommand;