import type { Account, AccountOptions, SearchResponse } from '../../../../types/types.js';
import { AccountAPI } from '../account-api.js';
/**
 * Get Accounts for a Date Range
 * @param this - The Account API
 * @param startDate - The start date
 * @param endDate - The end date
 * @returns The Accounts
 */
export declare function getAccountsForDateRange(this: AccountAPI, startDate: Date, endDate: Date, options?: AccountOptions): Promise<SearchResponse<Account>>;
