export type ClientFramework = "nextjs" | "react" | "vite" | "astro"; /** Detect a client-side framework from raw HTML body markers (not headers). */ export declare function detectClientFrameworkFromHtml(html: string): ClientFramework | null; /** Count interactive form controls present in HTML. Used symmetrically on raw + rendered. */ export declare function countInteractive(html: string): number; //# sourceMappingURL=framework-detect.d.ts.map