/** Full login flow (Developer OAuth Device Authorization Grant) */ export declare function login(host: string): Promise; /** * Login by directly setting a permanent developer token, skipping the OAuth flow. */ export declare function loginWithToken(host: string, token: string): Promise;