import { SYSTEMS } from './enum'; export declare const log: (...args: any[]) => any; export declare const getOS: () => SYSTEMS; export declare const isWSL: (fileName: string) => boolean; export declare type IParseFile = (file: string) => Record<'fileName' | 'lineNumber' | 'colNumber', string>; export declare const parseFile: IParseFile;