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