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 = { export: { exported_data_start_at: Date; exported_data_end_at: Date; }; }; declare const addExport: (http: HttpClient) => { query: (input: AddExportInput) => Promise>; }; export default addExport;