import { type FunctionComponent, type ReactNode } from "react"; import { type ECSSystem, type ECSSystemControls, type SystemDebugOptions } from "./types"; export { createSystem } from "./systems"; export { type ECSSystem, type ECSSystemControls } from "./types"; export declare function injectSystems(Component: FunctionComponent, systems: TSystems): (props: TProps & ECSSystemControls) => import("react/jsx-runtime").JSX.Element;