import { Advertisement, Gamification } from '@streamlayer/feature-gamification'; import { ControlVideoCb } from '../../../ui/video-player'; export declare const AdvertisementUI: React.FC<{ advertisement: Exclude; sidebar?: 'left' | 'right'; banner?: 'top' | 'bottom'; open?: (options?: { fromNotification?: boolean; }) => void; close?: () => void; markAsViewed?: () => void; skipAutoClose?: boolean; controlVideo: ControlVideoCb; advertisementPaused: boolean; togglePause: (flag: boolean) => void; isEventFired: Advertisement['isEventFired']; fireEvent: Advertisement['fireEvent']; muted?: boolean; toggleMute: (flag: boolean) => void; isNotification?: boolean; sendWebhookEvent?: Gamification['sendWebhookEvent']; }>;