import { LogLevel } from '../domain/types'; /** * Determines if a log entry should be captured based on the configured log level * @param entryLevel The level of the log entry being checked * @param configuredLevel The minimum log level configured in the SDK * @returns true if the entry should be captured, false otherwise */ export declare function shouldCapture(entryLevel: LogLevel, configuredLevel: LogLevel): boolean; /** * Determines the appropriate log level for different event types */ export declare function getEventLogLevel(eventType: string, eventData?: any, entryLevel?: LogLevel): LogLevel; //# sourceMappingURL=LogLevelFilter.d.ts.map