import type { TouristTax, TouristTaxPayload } from '@entities' import type { HttpClient } from '@services' import type { ApiError, Response } from '@types' export type AddExportInput = { payload: TouristTaxPayload } const addExport = (http: HttpClient) => ({ query: ( input: AddExportInput, ): Promise> => { return http.post(`v3/admin/exports/tourist_taxes`, input.payload) }, }) export default addExport