import type { ESLintOutput } from '../../../cli/adapter/eslint.js'; import type { PrettierOutput } from '../../../cli/adapter/prettier.js'; import type { StreamInterceptor } from '../external.js'; import type { InternalLintResult } from '../internal.js'; export declare const createAnnotations: (internal: InternalLintResult, eslint: ESLintOutput, prettier: PrettierOutput, tscOk: boolean, tscOutputStream: StreamInterceptor) => Promise;