/** * Loads a JSON file and converts it into a Set. * If the file does not exist or an error occurs, it returns an empty Set. * * @template T - The type of elements stored in the Set. * @param {string} path - The file path to load data from. * @returns {Promise>} - A promise that resolves to a Set containing parsed data. */ export declare const loadingFile: (path: string) => Promise>; /** * Saves an array of data to a JSON file. * If the file exists, it overwrites it with the new data. * * @template T - The type of elements stored in the file. * @param {string} filePath - The file path where data should be saved. * @param {T} data - The array of data to be saved. * @returns {Promise} - A promise that resolves once the data is written successfully. */ export declare const savingFile: (filePath: string, data: T) => Promise;