import { MenstrualDayCell, MenstrualDayInfo } from '@/utils/menstrualCycle'; import { Dayjs } from 'dayjs'; export interface DayCellProps { cell: Extract; isSelected: boolean; onPress: () => void; } export interface InlineTipProps { selectedDate: Dayjs; selectedInfo: MenstrualDayInfo | undefined; columnIndex: number; onMarkStart: () => void; onCancelMark: () => void; } export interface LegendItem { label: string; key: 'period' | 'predicted-period' | 'fertile' | 'ovulation-day'; }