import { ScanResult } from '../types/scanResult'; /** * Generates a filename for the output file based on the URL domain and current date * @param url - The URL to extract the domain from * @param format - The desired file format extension * @returns A string in the format "{domain}_{date}.{format}" */ export declare function generateOutputFilename(url: string, format: string): string; /** * Saves the data to a JSON file in the specified directory * @param data - The data to be saved * @param directory - The directory where the file will be saved * @param filename - The name of the output file */ export declare function saveAsJSON(data: ScanResult, directory: string, filename: string): void; /** * Saves the data to a CSV file with URL and Status Code columns * @param data - The data object containing visitedUrlsData array * @param directory - The directory where the file will be saved * @param filename - The name of the output file */ export declare function saveAsCSV(data: ScanResult, directory: string, filename: string): void; //# sourceMappingURL=save.d.ts.map