import { AccountArgs, CommonArgs, ConfigArgs, EnvironmentArgs, YargsCommandModule } from '../types/Yargs.js'; type GetStartedArgs = CommonArgs & ConfigArgs & AccountArgs & EnvironmentArgs & { name?: string; dest?: string; v2?: boolean; }; declare const getStartedCommand: YargsCommandModule; export default getStartedCommand;