import type { ClassValue } from 'clsx';
import type { ComponentRegistry } from './ComponentRegistry';
import type { ProcessedData } from '../types';
export interface RegionProps {
    as?: string;
    className?: ClassValue;
    data: ProcessedData[];
    componentRegistry: ComponentRegistry;
    name: string;
}
export declare const Region: ({ as, className, data, componentRegistry, name, }: RegionProps) => import("react/jsx-runtime").JSX.Element;
