export { ContentGraphClient } from './client.js'; export { createHmacFetch } from '../hmac-fetch.js'; export { isContentGraphClient, isOptiGraphClient, isOptiGraphConfig } from './utils.js'; export * from './types.js'; import type { OptimizelyGraphConfig } from '../types.js'; import { type IOptiGraphClient, type IOptiGraphClientFlags } from './types.js'; /** * Create a new instance of the default Optimizely Graph client * * @param config The client configuration * @param token The authentication token to apply to the client * @param flags The initial flag values * @returns The newly created instance */ export declare function createClient(config?: OptimizelyGraphConfig, token?: string | undefined, flags?: Partial): IOptiGraphClient; export default createClient;