import type { ClientReceipt } from '../../../../../../../entities/index.ts'; import type { HttpClient } from '../../../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../../../types/index.ts'; export type CreateClientReceipByContractIdInput = { contractId: string; receipt: { address: string; city: string; comment?: string; company_name?: string; country: string; deductible_vat: boolean; first_name: string; last_name: string; owner_vat_amount: number; owner_vat_attachment: File; payment_transaction_ids: string[]; zip_code: string; }; }; declare const createClientReceipByContractId: (http: HttpClient) => { query: (input: CreateClientReceipByContractIdInput) => Promise>; }; export default createClientReceipByContractId;