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