UNPKG

@hhgtech/hhg-components

Version:
27 lines (26 loc) 975 B
import React, { ReactNode } from 'react'; import { Category } from "../../together/interfaces/types"; import { LOCALE, UserInfo } from "../../types"; import { LeadGenProps } from "../LeadGen.type"; export type LeadGenSubscriptionBoxContainerProps = Pick<LeadGenProps, 'campaign_code' | 'articleId' | 'extraValues' | 'apiSsoUrl' | 'onFinish'> & { categoryList?: Array<Category>; apiUrl?: string; apiSubotUrl?: string; locale?: LOCALE; siteId?: string; siteDomain?: string; DEBUG_URL?: string; forceCampaign?: any; primaryColor?: string; children?: ReactNode; extraPayloadValues?: Array<{ key: string; value: string; control: string; }>; excludeExitRulesHandler?: boolean; userInfo?: UserInfo | null; onClose?: () => void; }; declare const LeadGenSubscriptionBox: (props: LeadGenSubscriptionBoxContainerProps) => React.JSX.Element; export { LeadGenSubscriptionBox };