@hhgtech/hhg-components
Version:
Hello Health Group common components
16 lines (15 loc) • 722 B
TypeScript
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 {};