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