export declare const fileExists: (path: string) => Promise<boolean>;
export declare const loadFile: (path: string) => Promise<{
    content: string;
    extension: string;
}>;
export declare const saveFile: (path: string, data: string) => Promise<void>;
