import type { ReactNode } from 'react';
import { SubjectEnum } from '../../enums/SubjectEnum';
/**
 * Render a subject cell with optional icon based on subject enum mapping
 * @param subjectName - The subject name to display
 * @param mapSubjectNameToEnum - Optional function to map subject name to SubjectEnum
 * @param showEmptyDash - Whether to show "-" for empty subject names (default: false)
 * @returns React node for the subject cell
 */
export declare const renderSubjectCell: (subjectName: string, mapSubjectNameToEnum?: (name: string) => SubjectEnum | null, showEmptyDash?: boolean) => ReactNode;
//# sourceMappingURL=renderSubjectCell.d.ts.map