import { AccountArgs, CommonArgs, ConfigArgs, YargsCommandModule } from '../../types/Yargs.js'; export type ProjectDeleteArgs = CommonArgs & ConfigArgs & AccountArgs & { projectName?: string; force: boolean; }; declare const projectDeleteCommand: YargsCommandModule; export default projectDeleteCommand;