export interface EffectiveState { tracingEnabled: boolean; metricsEnabled: boolean; loggingEnabled: boolean; tracesEndpoint: string | null; metricsEndpoint: string | null; logsEndpoint: string | null; profilerEnabled: boolean; memoryProfilerEnabled: boolean; callStackInterval: number; snapshotProfilerEnabled: boolean; snapshotSamplingInterval: number; } export declare function recordEffectiveState(patch: Partial): void; export declare function getEffectiveState(): Partial; export declare function resetEffectiveState(): void; //# sourceMappingURL=effective-state.d.ts.map