import { CacheSettings, FetchResponse, Helpers, Polyfills } from "./types/growthbook"; import type { GrowthBook, InitOptions, InitSyncOptions, GrowthBookClient } from "."; export declare const helpers: Helpers; export declare function setPolyfills(overrides: Partial): void; export declare function configureCache(overrides: Partial): void; export declare function clearCache(): Promise; export declare function refreshFeatures({ instance, timeout, skipCache, allowStale, backgroundSync, }: { instance: GrowthBook | GrowthBookClient; timeout?: number; skipCache?: boolean; allowStale?: boolean; backgroundSync?: boolean; }): Promise; export declare function unsubscribe(instance: GrowthBook | GrowthBookClient): void; export declare function onHidden(): void; export declare function onVisible(): void; export declare function clearAutoRefresh(): void; export declare function startStreaming(instance: GrowthBook | GrowthBookClient, options: InitOptions | InitSyncOptions): void; //# sourceMappingURL=feature-repository.d.ts.map