import type { FingerprintOptions, FingerprintResponse, FpSimulationConf } from '../types';
export declare function initFingerprintScript(appToken: string, userSimulationConfig?: FpSimulationConf): Promise<{
    isDeviceIntelligenceEnabled: boolean;
    behavioralDataEnabled: boolean;
    eventsRelUrl?: string;
    fpReqRelUrl?: string;
}>;
export declare function collectFingerprint(options?: FingerprintOptions): Promise<FingerprintResponse>;
export declare function reportSimulation(): Promise<FingerprintResponse>;
export declare const destroyFingerprint: () => void;
