/// <reference types="node" />
import * as fs from 'fs';
import { Options } from './managers/options';
/**
 * Asynchronous API.
 */
export declare function stat(path: fs.PathLike, opts?: Options): Promise<fs.Stats>;
/**
 * Synchronous API.
 */
export declare function statSync(path: fs.PathLike, opts?: Options): fs.Stats;
