import React from 'react'; import { AddonsConfigurationService } from '../../hooks/useAddonsConfigurationService'; export type Props = { addOnsConfigurationService: AddonsConfigurationService; subscriptionId: number; onClose: () => void; }; declare const ComponentsAllocationContainer: ({ addOnsConfigurationService, subscriptionId, onClose, }: Props) => React.JSX.Element; export default ComponentsAllocationContainer;