/// <reference types="node" />
export declare function exists(path: string): Promise<boolean>;
export declare function readFile(path: string): Promise<Buffer>;
export declare function unlink(path: string): Promise<void>;
