/**
 * Formatter for Github Annotations
 * See <https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/workflow-commands-for-github-actions#example-creating-an-annotation-for-an-error>
 */
import type { LintResult } from '../linter/linter.types';
export default function githubFormatter(results: LintResult[]): string;
