import { AxiosInstance } from "axios"; import { ChangePasswordPayload, CreateApiTokenPayload, User } from "./types"; export declare function updateUserMutation({ axiosInstance, payload, }: { axiosInstance: AxiosInstance; payload: Partial; }): Promise; export declare function createApiTokenMutation({ axiosInstance, payload, }: { axiosInstance: AxiosInstance; payload: CreateApiTokenPayload; }): Promise; export declare function deleteApiTokenMutation({ axiosInstance, tokenName, }: { axiosInstance: AxiosInstance; tokenName: string; }): Promise; export declare function changePasswordMutation({ axiosInstance, payload, }: { axiosInstance: AxiosInstance; payload: ChangePasswordPayload; }): Promise;