import { LogCache } from '../index';
import { NetworkFrequencyStrategy } from './network-frequency-strategy';
/**
 * 网络限速
 * 当前是每隔 10ms 上报一次最大 20,000 Byte
 * bind width = 16Mbps / 2MB/s
 *
 */
export declare class MaxBindWidthStrategy extends NetworkFrequencyStrategy {
    constructor(cache: LogCache);
}
