export declare class FSError extends Error {
    constructor(message: string);
}
export declare const saveToFile: (filePath: string, content: string) => Promise<void>;
export declare const loadFile: (filePath: string) => Promise<string>;
export declare const unlink: (path: string) => Promise<void>;
