/**
 * Write JSON file
 */
declare function writeJSONFile(filename: string, data: unknown): Promise<void>;

export { writeJSONFile };
