import type { IncomingPaymentTransaction } from '../../../../../../entities/index.ts'; import type { HttpClient } from '../../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../../types/index.ts'; export type AddExportInput = { id: string; export: { imported_to_account_software: boolean; }; }; declare const modifyExport: (http: HttpClient) => { query: (input: AddExportInput) => Promise>; }; export default modifyExport;