#!/usr/bin/env node
declare const axios: any;
declare const cheerio: any;
declare const NYS_HEALTH_URL = "https://health.ny.gov/statistics/diseases/communicable/2019-nCoV/new_york_state_positive_cases_by_county.htm";
interface CountyData {
    name: string;
    cases: number;
}
declare function getCountyData(): Promise<CountyData[]>;
declare function main(): Promise<void>;
