import { LogCache } from '../index';
import { LogStrategy } from './log-strategy';
/**
 * 实时上报，来一条打一条
 */
export declare class UnLimitStrategy extends LogStrategy {
    constructor(cache: LogCache);
    getLog(): string[];
    canSendLog(): boolean;
    onSendLog(): void;
}
