export declare type CustomReporter = (filename: string, different: boolean) => void; export declare const enum Reporter { /** * do nothing */ None = "none", /** * throw error for the filenames of files that are different from Prettier formatting */ Error = "error", /** * print warning for the filenames of files that are different from Prettier formatting */ Warning = "warning" } export declare function get_built_in_reporter(reporter: Reporter): CustomReporter;