export type Options = { auth?: string; fail?: boolean; message?: string; fs?: typeof import("node:fs"); azdev?: typeof import("azure-devops-node-api"); octokit?: typeof import("@octokit/core"); }; /** * Submits a code review with suggestions with specified diff. * @param {string} diff * @param {Options=} options * @returns {Promise} */ export default function suggest(diff: string, options?: Options | undefined): Promise;