import { Modifiers, ForegroundColor } from "chalk"; export declare type ModifiedForegroundColor = [ typeof Modifiers | undefined, typeof ForegroundColor ]; export declare type ForegroundColor = typeof ForegroundColor; /** * Uses `chalk` to present a nicely formatted * filepath and file where the file name itself is highlighted */ export declare function highlightFilepath(fp: string, color?: ModifiedForegroundColor | ForegroundColor, highlight?: ModifiedForegroundColor | ForegroundColor): string; //# sourceMappingURL=highlightFilepath.d.ts.map