import type { PaymentTimeline } from '../../../../../../entities/index.ts'; import type { HttpClient } from '../../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../../types/index.ts'; export type GetPaymentTimelineInput = { houseId: string; contractId: string; }; declare const getPaymentTimeline: (http: HttpClient) => { query: (input: GetPaymentTimelineInput) => Promise>; }; export default getPaymentTimeline;