export declare class BaseParser {
    protected fetchProvider: Function;
    protected headers: Record<string, string>;
    constructor(fetchProvider?: Function);
    protected fetch(url: string): Promise<any>;
}
