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 & { categoryList?: Array; 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 };