import { WebLogCache } from './log-cache-web'; import { NetworkContext } from './network-context'; import { LogStrategy } from './strategy/log-strategy'; export declare class LogSender { private _netCtx; private _cache; private _strategy; constructor(_netCtx: NetworkContext, _cache: WebLogCache, _strategy: LogStrategy); active(): void; destroy(): void; }