import { AccountArgs, CommonArgs, ConfigArgs, TestingArgs, YargsCommandModule } from '../types/Yargs.js'; type AuthArgs = CommonArgs & ConfigArgs & TestingArgs & AccountArgs & { authType?: string; disableTracking: boolean; } & { personalAccessKey?: string; }; declare const authCommand: YargsCommandModule; export default authCommand;