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