/**
 * Generator function to read the content of a directory recursively.
 *
 * @param dir A absolute path to a folder
 */
export declare function readDirRecursive(dir: string): AsyncGenerator<string>;
