import type { Plugin } from "esbuild"; import type { PluginConfig } from "./config"; export interface DomSelectorAngularOptions extends PluginConfig { } /** * Create an esbuild plugin that sets define constants for the DOM XRay client. * * Note: Angular's compiler reads HTML templates directly via fs.readFile * before esbuild processes them, so onLoad for .html files will NOT intercept * Angular templates. Use `patchFsReadFile()` from `@dom-xray/angular/patch` * for compile-time data-source injection. */ export declare function createDomSelectorEsbuildPlugin(options?: DomSelectorAngularOptions): Plugin; //# sourceMappingURL=esbuild-plugin.d.ts.map