import { VideoAdContainer } from '../../../adContainer'; import type { VastChain, Hooks, CancelFunction } from '../../../types'; interface SetupMetricsHandlersOptions { vastChain: VastChain; videoAdContainer: VideoAdContainer; hooks: Hooks; pauseOnAdClick: boolean; } export declare const setupMetricHandlers: ({ vastChain, videoAdContainer, hooks, pauseOnAdClick }: SetupMetricsHandlersOptions, callback: (event: string, ...args: any[]) => void) => CancelFunction; export {};