/** * VitePress Framework Extractor * * Extracts data from VitePress (Vue 3 static site generator) applications. */ import type { FrameworkExtractionResult } from './types.js'; /** * Detect if page is a VitePress application */ export declare function detectVitePressApp(html: string): boolean; /** * Extract data from VitePress applications */ export declare function extractVitePressData(html: string): FrameworkExtractionResult | null; //# sourceMappingURL=vitepress-extractor.d.ts.map