import { LintConfig } from './Config'; export declare const GetFormattedString: unique symbol; export interface Formattable { [GetFormattedString](lint: LintConfig): string; } export declare function isFormattable(value: unknown): value is Formattable;