import type { Evaluation, Options, Target } from './types';
export declare const MIN_EVENTS_SYNC_INTERVAL = 60000;
export declare const MIN_POLLING_INTERVAL = 60000;
export declare const defaultOptions: Options;
export declare const getConfiguration: (options: Options) => Options;
export declare const defer: (fn: Function, doDefer?: boolean) => void;
export declare const getRandom: (min: number, max: number) => number;
export declare const encodeTarget: (target: Target) => string;
export declare function sortEvaluations(evaluations: Evaluation[]): Evaluation[];
