import { AccountArgs, CmsPublishModeArgs, CommonArgs, ConfigArgs, EnvironmentArgs, YargsCommandModule } from '../../types/Yargs.js'; export type WatchCommandArgs = ConfigArgs & AccountArgs & EnvironmentArgs & CommonArgs & CmsPublishModeArgs & { src?: string; dest?: string; fieldOptions?: string[]; remove?: boolean; initialUpload?: boolean; notify?: string; convertFields?: boolean; saveOutput?: boolean; }; declare const watchCommand: YargsCommandModule; export default watchCommand;