import { LogCache, NetworkContext } from './index';
import { LogStrategy } from './strategy/log-strategy';
export declare class LogSender {
    private _netCtx;
    private _cache;
    private _strategy;
    constructor(_netCtx: NetworkContext, _cache: LogCache, _strategy: LogStrategy);
    active(): void;
}
