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