import type { TransformOptions } from "esbuild"; import { type Plugin } from "vite"; export type MercuryPresentationOptions = { debug?: boolean; include?: string[]; exclude?: string[]; esbuildTransformOptions?: TransformOptions; }; export declare const mercuryPresentationDefaultOptions: { readonly debug: false; readonly include: ["**/*.mdx"]; readonly exclude: []; readonly esbuildTransformOptions: { readonly loader: "tsx"; readonly target: "esnext"; readonly jsx: "automatic"; }; }; export declare const presentation: (_options?: MercuryPresentationOptions) => Plugin; //# sourceMappingURL=plugin.d.ts.map