import type { Payment, PaymentOptions, SearchResponse } from '../../../../types/types.js';
import { PaymentAPI } from '../payment-api.js';
/**
 * Get Payments for a Date Range
 * @param this - The Payment API
 * @param startDate - The start date
 * @param endDate - The end date
 * @returns The Payments
 */
export declare function getPaymentsForDateRange(this: PaymentAPI, startDate: Date, endDate: Date, options?: PaymentOptions): Promise<SearchResponse<Payment>>;
