import { AllowedComponentList, ModelProps } from '../types/AEMModel'; type Props = { allowedComponents: AllowedComponentList; className: string; placeholderClassNames?: string; title: string; getItemClassNames?: (_key: string) => string; } & ModelProps; /** * Represents allowed components container in AEM. */ declare const AllowedComponentsContainer: (props: Props) => JSX.Element; export default AllowedComponentsContainer;