import { FetchDocsResult, RegistryEntry } from '../shared/types'; import { IFetchProvider, FetchOptions } from './fetch-provider.interface'; import { SourceAdapterService } from './source-adapter.service'; export declare class StaticHtmlFetchProvider implements IFetchProvider { private readonly sourceAdapter; readonly name = "static-html"; constructor(sourceAdapter: SourceAdapterService); canHandle(_entry: RegistryEntry): boolean; fetchDocs(entry: RegistryEntry, options: FetchOptions): Promise; private normalizePageUrl; private stripUiResidue; private isLowQualityPage; private buildTurndownService; private buildFallback; private humanize; }