import type { SocioFiles, FS_Util_Response } from './types.d.ts';
export declare function SaveFilesToDiskPath(string_array_path: string[], files: SocioFiles): Promise<FS_Util_Response>;
export declare function ReadFilesFromDisk(file_paths: string[]): Promise<FS_Util_Response>;
export declare function MapPathsToFolder(folder_path: string[], relative_file_paths: string[]): string[];
