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