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