import { IstatStruct } from './structs/stat'; import { TCallbackWithError } from './types'; export declare function stat(filepath: string): IstatStruct; export declare function statAsync(filepath: string, callback: TCallbackWithError): void; export declare function lstat(linkpath: string): IstatStruct; export declare function lstatAsync(linkpath: string, callback: TCallbackWithError): void; export declare function fstat(fd: number): IstatStruct; export declare function fstatAsync(fd: number, callback: TCallbackWithError): void;