import { NormalizedComponentConfiguration } from '../types';
interface ComponentsGroupProps {
    testId: string;
    isSearching?: boolean;
    isDefault?: boolean;
    title: React.ReactNode;
    componentConfigurations: NormalizedComponentConfiguration[];
}
/**
 * Component for rendering a group of components.
 *
 * This component is responsible for rendering a group of components and (future)
 * drag-and-drop behaviour.
 */
declare const ComponentsGroup: React.FC<ComponentsGroupProps>;
export default ComponentsGroup;
