/** * Available export file formats for attendance data */ export declare enum ExportFormat { CSV = "csv", EXCEL = "xls" } /** * Configuration option for a format selection card in the export format popover */ export interface ExportFormatOption { label: string; value: ExportFormat; ariaLabel: string; }