UNPKG

@hhgtech/hhg-components

Version:
9 lines (8 loc) 600 B
import React from 'react'; import { ContainerProps } from '@mantine/core'; import { SurveyOrPremiumBannerContextType } from "./context"; export type Props = { Wrapper?: React.FC<any>; setShouldAcquisitionModalOpen?: () => void; } & Omit<SurveyOrPremiumBannerContextType, 'acquisitionInfo' | 'isLoggedIn'> & ContainerProps; export declare const SurveyOrPremiumBanner: ({ type, articleId, categoryIds, isMarketing, isSurveyType, hasPremiumBanner, currentUrl, isMobile, subcribeHealthStatus, setShouldAcquisitionModalOpen, onValueChange, source, Wrapper, }: Props) => React.JSX.Element;