import { BlinkEvent } from '../types';
import { Page } from '../selectors/get-page-state';
/**
 * Prepares click data selecting the right
 * fields to send to the server
 */
export default function prepareClicksForSending({ page, url, clickId, abId, externalId, context, }: {
    page: Page;
    url: string;
    externalId: string;
    abId: string;
    clickId: string;
    context: string[];
}): BlinkEvent;
