import type { HttpClient } from '../../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../../types/index.ts'; export type GetTouristTaxInput = { id: string; }; declare const getTouristTax: (http: HttpClient) => { query: (input: GetTouristTaxInput) => Promise>; }; export default getTouristTax;