import type { Region as RegionType } from '@enonic-types/core';
import type { ComponentRegistry } from './ComponentRegistry';
export interface RegionsProps {
    componentRegistry: ComponentRegistry;
    regions: Record<string, RegionType>;
}
export declare function Regions({ componentRegistry, regions }: RegionsProps): import("react/jsx-runtime").JSX.Element[];
