import React, { ReactElement, MouseEvent } from 'react'; export interface SuggestionCtaWrapperProps { /** The offer ID to report when CTA is clicked */ offerId: string; /** The target URL to report when CTA is clicked */ referredUrl: string; /** A single clickable element (must accept onClick prop) */ children: ReactElement<{ onClick?: (e: MouseEvent) => void; }>; } /** * Wrapper component that adds automatic CTA click reporting to the dealer BI service. * * Note: The child component must be clickable (accept an onClick prop). */ export declare const SuggestionCtaWrapper: React.FC; //# sourceMappingURL=SuggestionCtaWrapper.d.ts.map