import { type TransactionsAccount } from '../transactions'; import { BaseScraperWithBrowser, type PossibleLoginResults } from './base-scraper-with-browser'; import { ScraperErrorTypes } from './errors'; type ScraperSpecificCredentials = { username: string; password: string; }; declare class MizrahiScraper extends BaseScraperWithBrowser { getLoginOptions(credentials: ScraperSpecificCredentials): { loginUrl: string; fields: { selector: string; value: string; }[]; submitButtonSelector: string; checkReadiness: () => Promise; postAction: () => Promise; possibleResults: PossibleLoginResults; }; fetchData(): Promise<{ success: boolean; accounts: TransactionsAccount[]; errorType?: undefined; errorMessage?: undefined; } | { success: boolean; errorType: ScraperErrorTypes; errorMessage: string; accounts?: undefined; }>; private getPendingTransactions; private fetchAccount; } export default MizrahiScraper;