import { ReactElement } from 'react'; export type ObjectOrNull = object | null; export type RenderElement = ReactElement | null; export type ComponentOptions = { props: TProps; state: TState; metadata: TMetadata; }; export type RenderFn> = (element: TElement, options: TComponentOptions) => RenderElement;