import type { LintResult } from '../linter/linter.types';
type FormatterFunction = (results: LintResult[]) => string;
export declare function loadFormatter(formatterName: string): Promise<FormatterFunction>;
export {};
