import { PrefixedElementTag } from "./types.js"; import { VNode } from "./virtual/types.js"; //#region src/reactive-virtual.d.ts type StaticVNodeChild = VNode | string | number | boolean | null | undefined; type ReactiveFunctionComponent = (props: Props) => Children; type ReactiveVNodeType = PrefixedElementTag | ((props: never) => Children); //#endregion export { ReactiveFunctionComponent, ReactiveVNodeType, StaticVNodeChild }; //# sourceMappingURL=reactive-virtual.d.ts.map