import { CommonArgs, ConfigArgs, AccountArgs, EnvironmentArgs, JSONOutputArgs, YargsCommandModule } from '../../types/Yargs.js'; export type ProjectDeployArgs = CommonArgs & ConfigArgs & AccountArgs & EnvironmentArgs & JSONOutputArgs & { project?: string; build?: number; buildId?: number; profile?: string; deployLatestBuild: boolean; force: boolean; }; declare const projectDeployCommand: YargsCommandModule; export default projectDeployCommand;