import { Page } from 'puppeteer'; import { Account } from '../models/account'; import { AccountType } from '../models/account-type'; import { Transaction } from '../models/transaction'; export interface TransactionsResponse { transactions: Transaction[]; accountType: AccountType; } export declare const scrapeTransactions: (page: Page, account: Account) => Promise;