import type { FileMap, JSErrorFile, SCSSErrorFile } from './types'; export declare function parseScssFiles(scssErrorFiles: SCSSErrorFile[], workspace: string): any[]; export declare function parseJSFiles(jsErrorFiles: JSErrorFile[], workspace: string): any[]; export declare function checkLint({ privateToken, gitApiPrefix, workspace, mrUrl, mrId, buildUrl, repo, repoUrl, sourceBranch, targetBranch, docLink, webhookUrl, chatId, checkAll, mentionList, lintFiles, throwError, ignoreSubmodules, }: { privateToken: string; gitApiPrefix: string; workspace: string; mrUrl?: string; mrId?: string; buildUrl: string; repo: string; repoUrl?: string; sourceBranch?: string; targetBranch?: string; docLink: string; webhookUrl: string; chatId?: string[]; checkAll?: boolean; mentionList?: string[]; lintFiles?: string[]; throwError?: boolean; ignoreSubmodules?: boolean; }): Promise; export declare function getErrorInfo(result: Array<{ errorCount?: number; }>): { total: number; errorFiles: { errorCount?: number | undefined; }[]; };