/**
 * Browse JSON files in the output directory
 * @param customOutputDir Optional custom output directory path
 * @returns Promise resolving to true if successful, false otherwise
 */
declare function browseJsonFiles(customOutputDir?: string): Promise<boolean>;
export { browseJsonFiles };
