import type { SWRMutationConfiguration, SWRMutationResponse } from "swr/mutation"; import client from "../../client"; import type { PostUsersLoginVerifyMutationRequest, PostUsersLoginVerifyMutationResponse } from "../models/PostUsersLoginVerify"; /** * @description Provide a signed hash to receive a JWT token to be consumed by PUT or POST requests. * @summary Verify signed data * @link /users/login/verify */ export declare function usePostUsersLoginVerify(options?: { mutation?: SWRMutationConfiguration; client?: Partial>[0]>; }): SWRMutationResponse;