import type { SWRMutationConfiguration, SWRMutationResponse } from "swr/mutation"; import client from "../../client"; import type { PostUsersLoginMutationRequest, PostUsersLoginMutationResponse } from "../models/PostUsersLogin"; /** * @description Provides the user with a nonce to be included in the next signature. Consumed by /verify endpoint. * @summary Get nonce * @link /users/login */ export declare function usePostUsersLogin(options?: { mutation?: SWRMutationConfiguration; client?: Partial>[0]>; }): SWRMutationResponse;