/** * CSV Export * * Export suggestions to CSV format. */ import { type GeocodedActivity } from '../types'; /** * Export suggestions to CSV format. * * @param suggestions Geocoded suggestions to export * @returns CSV string */ export declare function exportToCSV(suggestions: readonly GeocodedActivity[]): string; //# sourceMappingURL=csv.d.ts.map