import { type TsErrorFile } from './ts-error';
export declare function checkTSErrorInMrOrAll({ privateToken, gitApiPrefix, workspace, repo, repoUrl, mrId, mrUrl, sourceBranch, targetBranch, checkAll, buildUrl, docLink, mentionList, postFixList, chatId, webhookUrl, command, }: {
    privateToken: string;
    gitApiPrefix: string;
    workspace: string;
    repo: string;
    repoUrl: string;
    mrId: string;
    mrUrl: string;
    sourceBranch: string;
    targetBranch: string;
    checkAll: boolean;
    buildUrl: string;
    docLink: string;
    mentionList: string[];
    postFixList?: string[];
    chatId?: string[];
    webhookUrl: string;
    command?: string;
}): Promise<TsErrorFile[]>;
