import React from 'react'; export type ComponentsContainerProps = { subscriptionId: number; catalogId: number; }; declare const ComponentsContainer: ({ subscriptionId, catalogId, }: ComponentsContainerProps) => React.JSX.Element; export default ComponentsContainer;