import React from 'react'; export type CatalogPageDescriptionProps = { title: string; titleTranslationKey?: string; description: string; descriptionTranslationKey?: string; tag: number | string; }; export declare function CatalogPageDescription({ title, titleTranslationKey, description, descriptionTranslationKey, tag }: CatalogPageDescriptionProps): React.JSX.Element;