import { BlinkEvent } from '../types';
import { Page } from '../selectors/get-page-state';
export interface PrepareVideoAdEventInput {
    page: Page;
    videoId: string;
    adPosition: string;
    time?: Date;
    system?: string;
    title?: string;
    client?: string;
    viewable?: number;
    adId?: string;
    isBumper?: boolean;
    creativeId?: string;
    dealId?: string;
    duration?: number;
}
export default function prepareVideoAdForSending(input: PrepareVideoAdEventInput): BlinkEvent;
