import { ExperimentContext } from "./ExperimentContext"; import { FeedBackResponse } from "./FeedBackResponse"; export declare class ExperimentationService { static clearCache(experimentParameterName: string): void; static getContext( experimentParameterName: string, fallbackVariantValue: string ): ExperimentContext; static recordFeedback( experimentParameterName: string, feedbackMap: Record ): FeedBackResponse; static toExpObject(json: string): any; }