/** * Different React functions */ export declare enum REACT_FUNTIONS { jsx = "jsx", jsxs = "jsxs", jsxDEV = "jsxDEV" } export declare const REACT_FUNCTION_VALUES: readonly [REACT_FUNTIONS.jsx, REACT_FUNTIONS.jsxs, REACT_FUNTIONS.jsxDEV]; export type ReactFunction = (typeof REACT_FUNCTION_VALUES)[number]; /** * Special React components */ export declare enum REACT_COMPONENTS { Activity = "Activity", Fragment = "Fragment", Profiler = "Profiler", Suspense = "Suspense", SuspenseList = "SuspenseList", ViewTransition = "ViewTransition" } export declare const REACT_COMPONENT_VALUES: readonly [REACT_COMPONENTS.Activity, REACT_COMPONENTS.Fragment, REACT_COMPONENTS.Profiler, REACT_COMPONENTS.Suspense, REACT_COMPONENTS.SuspenseList, REACT_COMPONENTS.ViewTransition]; export type ReactComponent = (typeof REACT_COMPONENT_VALUES)[number]; /** * React import sources */ export declare enum REACT_IMPORT_SOURCES { JSX_DEV_RUNTIME = "react/jsx-dev-runtime", JSX_RUNTIME = "react/jsx-runtime", REACT = "react" } //# sourceMappingURL=constants.d.ts.map