interface Options {
  mode?: number;
}
declare function mkdirp(path: string, options?: Options): string | null;
export = mkdirp;