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