import { CommonArgs, AccountArgs, ConfigArgs, EnvironmentArgs, YargsCommandModule } from '../../types/Yargs.js'; type ProjectWatchArgs = CommonArgs & ConfigArgs & AccountArgs & EnvironmentArgs & { initialUpload?: boolean; }; declare const projectWatchCommand: YargsCommandModule; export default projectWatchCommand;