import type { BlinkEvent } from '../types';
import type { WebVitalsReport } from '../main';
import { Page } from '../selectors/get-page-state';
export interface PrepareChromeWebVitalsInput {
    page: Page;
    webVitals: WebVitalsReport;
}
export default function prepareCwvEvent({ page, webVitals, }: PrepareChromeWebVitalsInput): BlinkEvent;
