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