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