import { BaseScraperWithBrowser } from './base-scraper-with-browser'; import { type ScraperScrapingResult } from './interface'; type ScraperSpecificCredentials = { username: string; password: string; }; declare class LeumiScraper extends BaseScraperWithBrowser { getLoginOptions(credentials: ScraperSpecificCredentials): { loginUrl: string; fields: { selector: string; value: string; }[]; submitButtonSelector: string; checkReadiness: () => Promise; postAction: () => Promise; possibleResults: import("./base-scraper-with-browser").PossibleLoginResults; }; fetchData(): Promise; } export default LeumiScraper;