import { YargsCommandModule, CommonArgs, ConfigArgs } from '../../types/Yargs.js'; export type ProjectAddArgs = CommonArgs & ConfigArgs & { type?: string; name?: string; features?: string[]; distribution?: string; auth?: string; }; declare const projectAddCommand: YargsCommandModule; export default projectAddCommand;