import { TCallback, TCallbackWithError } from './types'; export declare function symlink(target: string, linkpath: string): number; export declare function symlinkAsync(target: string, linkpath: string, callback: TCallback): void; export declare function unlink(pathname: string): number; export declare function unlinkAsync(pathname: string, callback: TCallback): void; export declare function readlink(pathname: string): string; export declare function readlinkAsync(pathname: string, callback: TCallbackWithError): void; export declare function link(oldpath: string, newpath: string): number; export declare function linkAsync(oldpath: string, newpath: string, callback: TCallback): void;