import { CSSProperties, FC } from 'react'; import { PlatformResponse, AdMeshTheme, DelegationActivationPayload, RecommendationReportPayload } from '../types/index'; export interface AdMeshTailAdProps { recommendations: PlatformResponse[]; theme?: AdMeshTheme; className?: string; style?: CSSProperties; sessionId?: string; triggerExposureUrl?: boolean; onDelegationConsent?: (recommendation: PlatformResponse) => boolean | Promise; onDelegationActivated?: (payload: DelegationActivationPayload) => void | Promise; onStartDelegation?: (recommendation: PlatformResponse) => void | Promise; onPasteToInput?: (content: string) => void; onRecommendationReport?: (payload: RecommendationReportPayload) => void | Promise; } export declare const AdMeshTailAd: FC; export default AdMeshTailAd; //# sourceMappingURL=AdMeshTailAd.d.ts.map