import { Command } from 'commander'; type Login_opts = { apiKey?: string; device?: boolean; github?: boolean; customerId?: string; }; declare const handle_login: (opts: Login_opts) => Promise; declare const login_command: Command; export { login_command, handle_login }; //# sourceMappingURL=login.d.ts.map