import { ApiMethodDeclaration } from "../../index"; import { User } from "../types"; type ParamsData = { data: { newPassword: string; oldPassword: string; }; }; type ResponseData = User; declare const changePassword: ApiMethodDeclaration; export { changePassword };