import type { Hooks, ProfilingInternalContextSchema } from '@openobserve/browser-rum-core'; export interface ProfilingContextManager { set: (next: ProfilingInternalContextSchema) => void; get: () => ProfilingInternalContextSchema | undefined; } export declare const startProfilingContext: (hooks: Hooks) => ProfilingContextManager;