import { Page } from 'puppeteer'; import { Lectures } from './types'; declare type Options = { year: string; semester: string; courseCoverage: string; campusCoverage: string; collegeCoverage: string; majorCoverage: string; majorCode: string; }; declare const analyzeTable: (page: Page, options: Options) => Promise; export { analyzeTable };