/** * Bun build plugin that wraps HTML/HTMX scripts with import.meta.hot support * for granular HMR. This allows script changes to hot-reload independently * without triggering a full HTML page rebuild. */ import type { BunPlugin } from 'bun'; /** * Creates a Bun build plugin that wraps HTML/HTMX scripts with HMR support * @param htmlDir - The HTML directory path (normalized with forward slashes) * @param htmxDir - The HTMX directory path (normalized with forward slashes) * @returns Bun build plugin */ export declare const createHTMLScriptHMRPlugin: (htmlDir?: string, htmxDir?: string) => BunPlugin;