/**
 * This is the internal API reference for the common code shared between
 * LaunchDarkly Edge SDKs.
 *
 * Do not use this package directly in a cloud worker.
 *
 */
import type { Info } from '@launchdarkly/js-server-sdk-common';
import { Cache, EdgeFeatureStore, EdgeProvider, LDClient } from './api';
import { LDOptions, LDOptionsInternal } from './utils/validateOptions';
export * from '@launchdarkly/js-server-sdk-common';
export { EdgeFeatureStore };
export type { LDClient, LDOptions, EdgeProvider, Cache };
/**
 * Do not use this function directly.
 *
 * This is an internal API to be used directly only by LaunchDarkly Edge SDKs.
 */
export declare const init: (clientSideID: string, platformInfo: Info, options: LDOptionsInternal) => LDClient;
//# sourceMappingURL=index.d.ts.map