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