import React from 'react'; type ComponentsAllocationContentProps = { displayMode: 'layer' | 'window'; subscriptionId: number; onClose: () => void; catalogId: number; }; declare const Content: ({ onClose, displayMode, subscriptionId, catalogId, }: ComponentsAllocationContentProps) => React.JSX.Element; export default Content;