/** * Task: * * Reads a file at the given path and looks for the given `find` value which can * be a `string` or `RegExp`. If it is found, then the task passes. If the * string is not found, the task fails. */ export declare function ensureFileContains(path: string, find: string | RegExp): void;