/// <reference types="@types/node" />
import * as fs from 'fs';
import { URL } from 'url';
export declare function readdir(path: string | Buffer | URL): Promise<Array<string>>;
export declare function stat(path: string | Buffer | URL): Promise<fs.Stats>;
