import type { BuilderContent } from '../types/builder-content'; import type { CanTrack } from '../types/can-track'; import type { Nullable } from '../types/typescript'; export declare const handleABTestingSync: ({ item, canTrack }: { item: Nullable; } & CanTrack) => Nullable; export declare const handleABTesting: ({ item, canTrack }: { item: BuilderContent; } & CanTrack) => Promise;