export abstract class ExportService { getExport: (format?: 'csv' | 'json') => Promise; getOrganizationExport: (organizationId: string, format?: 'csv' | 'json') => Promise; getFileName: (prefix?: string) => string; }