import type { ApiRequest, ApiSuccessResponse, PrivilegeLevel } from "./common.js"; export type PasswordlessLoginRequest = ApiRequest<"PasswordlessLogin", { /** * Minimum privilege level to attempt to acquire by logging in. */ minimumPrivilegeLevel: `${PrivilegeLevel}`; }>; export type PasswordlessLoginResponseData = { /** * Authentication Token in case login is successful. */ authenticationToken: string; }; export type PasswordlessLoginResponse = ApiSuccessResponse; export declare const buildPasswordlessLogin: (options: import("./common.js").InternalClientOptions) => (extra?: Omit | undefined) => Promise;