import type { ComponentRegistry } from './ComponentRegistry';
import type { RenderableComponent } from '../types';
export declare function BaseComponent({ component, componentRegistry }: {
    component: RenderableComponent;
    componentRegistry?: ComponentRegistry;
}): import("react/jsx-runtime").JSX.Element | null;
