import { Config, NamedReturnType } from './types';
export interface UseExperiments {
    clientId: string;
    param?: string;
    config?: Partial<Config>;
    clientFeatures?: Record<string, string>;
}
export declare const useExperiments: <T extends Record<string, string>>(params: UseExperiments) => NamedReturnType<T>;
