import React from 'react'; export type SubscriptionsContainerProps = { catalogId: number; catalogName: string; useExpandableLayout?: boolean; }; declare const SubscriptionsContainer: ({ catalogId, catalogName, useExpandableLayout, }: SubscriptionsContainerProps) => React.JSX.Element; export default SubscriptionsContainer;