import { ApiMethodDeclaration } from "../../index"; import { Order } from "../types"; type ParamsData = { id: string; data: { transactionId: string; }; }; type ResponseData = Order; declare const removeRefund: ApiMethodDeclaration; export { removeRefund };