import type { Vite } from 'vitest/node'; export interface TestingLibraryOptions { /** * The package name of the ReactLynx runtime package. * * @default `@lynx-js/react` */ runtimePkgName?: string; /** * The engine version to use for the transform. * * @default `''` */ engineVersion?: string; /** * Enable experimental React Compiler support. * * Requires `@babel/core`, `babel-plugin-react-compiler`, * `@babel/plugin-syntax-jsx`, and `@babel/plugin-syntax-typescript` * to be installed in your project. * * @default `false` */ experimental_enableReactCompiler?: boolean; } export declare function testingLibraryPlugin(options?: TestingLibraryOptions): Vite.PluginOption;