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