import type { HttpClient } from '../../../../../../../services/index.ts'; export type GetClientReceiptPdfInput = { receiptId: string; contractId: string; }; declare const getClientReceiptPdf: (http: HttpClient) => { query: (input: GetClientReceiptPdfInput) => Promise; }; export default getClientReceiptPdf;