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