/** @noSelfInFile */ import type { Children, EmptyObject, NodeProps } from "./element"; import type { ComponentClass, Contexts } from "./reconciler"; export declare type FunctionComponent

= (props: NodeProps

, contexts: Contexts) => Children; export declare type ComponentType

= ComponentClass

| FunctionComponent

;