import { CountMinSketch, JsBloom } from '@getkoala/js-bloom'; import type { AnalyticsEvent, JSONValue, PageView } from '../src'; export interface Profile { counts: CountMinSketch; bloom: JsBloom; sessionStart?: Date; } export declare type Indexable = AnalyticsEvent | JSONValue | Record | PageView | Date; export declare function index(profile: Profile, element: Indexable | Indexable[]): void;