export {runBabelPluginReactCompiler} from './Babel/RunReactCompilerBabelPlugin';
export {
CompilerError,
CompilerErrorDetail,
CompilerSuggestionOperation,
ErrorSeverity,
type CompilerErrorDetailOptions,
} from './CompilerError';
export {
compileFn as compile,
compileProgram,
parsePluginOptions,
run,
runPlayground,
OPT_OUT_DIRECTIVES,
type CompilerPipelineValue,
type PluginOptions,
} from './Entrypoint';
export {
Effect,
ValueKind,
parseConfigPragma,
printHIR,
validateEnvironmentConfig,
type EnvironmentConfig,
type ExternalFunction,
type Hook,
type SourceLocation,
} from './HIR';
export {printReactiveFunction} from './ReactiveScopes';
declare global {
let __DEV__: boolean | null | undefined;
}
import BabelPluginReactCompiler from './Babel/BabelPlugin';
export default BabelPluginReactCompiler;