/** * Core Modules * * These modules handle the main SDK functionality: * - RemoteConfigManager: Remote configuration loading and application * - CaptureManager: Event capture and payload enrichment * - IdentityManager: User identification and property management * - FeatureManager: Feature lifecycle and configuration */ export { RemoteConfigManager, type RemoteConfigHost, type RemoteConfigCallback, } from "./remote-config"; export { CaptureManager, type CaptureHost, type CaptureOptions, } from "./capture"; export { IdentityManager, type IdentityHost } from "./identity"; export { ConsentManager, type ConsentHost, type ConsentState } from "./consent"; export { initFacebookCookies, removeFacebookCookies, getFbp, getFbc, } from "./fb-cookies"; export { FeatureManager, type FeatureHost, type FeatureDescriptor, } from "./feature-manager"; export { isPageleaveEnabled } from "./config-utils"; export { PageLifecycleTracker } from "./page-lifecycle"; export { EventBuffer, type EventBufferHost, type BufferedEvent, } from "./event-buffer"; export { FifoQueue } from "./fifo-queue";