import { ConfigArgs, CommonArgs, TestingArgs, AccountArgs, YargsCommandModule } from '../types/Yargs.js'; type InitArgs = CommonArgs & ConfigArgs & TestingArgs & AccountArgs & { authType?: string; 'disable-tracking'?: boolean; 'use-hidden-config'?: boolean; }; declare const initCommand: YargsCommandModule; export default initCommand;