import BaseFluxel from "../baseReactive.js"; import type { ChildrenType, StateParam, FluxelComponent } from "../type.js"; declare const Fluxel: typeof BaseFluxel & { createStatefulComponent:
(renderer: (props: P, state: StateParam) => R, initialState?: S | ((props: P) => S)) => FluxelComponent
; }; export default Fluxel;