import { SortierOptions } from "../../config/index.js";
import { ILanguage } from "../../language.js";
export declare class Reprinter implements ILanguage {
    static readonly EXTENSIONS: string[];
    getRewrittenContents(filename: string, fileContents: string, options: SortierOptions): string;
    isFileSupported(filename: string): boolean;
}
