export declare function createMRNote({ privateToken, gitApiPrefix, projectName, mrId, body, path, line, lineType, risk, resolveState, notifyEnabled, }: { privateToken: string; gitApiPrefix: string; projectName: string; mrId: string | number; body: any; path: string; line: number; lineType?: string; risk?: 0 | 1 | 2 | 3; resolveState?: 0 | 1 | 2; notifyEnabled?: boolean; }): Promise; export declare function createMRComment({ projectName, mrId, data, privateToken, gitApiPrefix, }: { projectName: string; mrId: string | number; data: any; privateToken: string; gitApiPrefix: string; }): Promise;