/** * Saves an array of objects to a JSON file. * @param data The array of objects to save. * @param name The name of the file to save. */ export declare function saveJSONToFile | Record[]>(data: T, name: string): void;