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