import { ProxyProvider } from '../internal/openFeature/proxy'; /** * Create a new OpenFeature provider that proxies Grafana's own OFREP provider. * * Allows plugins to safely rely on the same OFREP evaluations as Grafana without sharing a mutable domain or provider instance. */ export declare function createOpenFeatureOFREPWebProvider(): ProxyProvider; /** * Create a new OpenFeature provider that proxies Grafana's own localStorage provider. * * Allows plugins to safely rely on the same localStorage overrides as Grafana without sharing a mutable domain or provider instance. */ export declare function createOpenFeatureLocalStorageProvider(): ProxyProvider;