import React from 'react';
import { TextProps } from "../../mantine";
import { NewsletterTopic } from "../../../premiumNewsletter/interfaces/types";
type RecentlyViewedSectionProps = {
    topics: NewsletterTopic[];
    selectedTopics: NewsletterTopic[];
    onTopicChange(topic: NewsletterTopic[]): void;
    isBlock?: boolean;
    labelProps?: TextProps;
    maxSelect?: number;
};
export declare const RecentlyViewedSection: ({ topics, onTopicChange, isBlock, selectedTopics, labelProps, maxSelect, }: RecentlyViewedSectionProps) => React.JSX.Element;
export {};
