/** * Task: * * Takes a file, runs it through the `process` argument which is a function, * then writes the return value of `process` to the dest. */ export declare function processFile(src: string, dest: string, process: (input: string) => string): void;