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