import type { LogEntry } from '../../commands/types';
export declare const DEFAULT_LOG_LEVEL = "ALL";
export declare const MAX_JSON_LOG_LENGTH = 200;
export declare const MAX_BUFFERED_EVENTS_COUNT = 5000;
export declare function toLogEntry(message: string, timestamp: number, level?: string): LogEntry;
export interface GrepOptions {
    caseInsensitive?: boolean;
}
export declare function grepFile(fullPath: string, str: string, opts?: GrepOptions): Promise<boolean>;
//# sourceMappingURL=helpers.d.ts.map