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