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