import type { ComponentType } from 'react'; export type NodeTypeProps = { type: string; component: ComponentType; }; declare function NodeType({ type, component }: NodeTypeProps): null; declare namespace NodeType { var displayName: string; } export default NodeType;