/**
 * HTML file processing
 * Process individual HTML files to extract content and convert to markdown
 */
import type { DocInfo, PluginOptions, Logger, CachedRouteInfo } from '../types';
/**
 * Process a single HTML file → Markdown + metadata
 * @internal
 */
export declare function processHtmlFileWithContext(fullHtmlPath: string, routePath: string, config: PluginOptions & {
    path?: string;
}, mdOutDir: string, logger: Logger, siteUrl: string, outDir?: string, routeLookup?: Map<string, CachedRouteInfo>): Promise<DocInfo>;
//# sourceMappingURL=html-file-processor.d.ts.map