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