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