export interface BottomMenuProps { onObservationPress?: () => void | Promise; onTechnicalSheetPress?: () => void; onCreatePress?: () => void; isObservationDisabled?: boolean; isTechnicalSheetDisabled?: boolean; onBackPress?: () => void; showBackButton?: boolean; onAddPress?: () => void | Promise; isAddDisabled?: boolean; isSelectionMode?: boolean; observationLabel?: string; /** * Acepta tanto los nombres legacy (paper-mdi) usados por las pantallas * actuales como `IconName`. La traducción ocurre dentro del organism. */ observationIcon?: string; observationBadgeCount?: number; onSelectAll?: () => void; onDeselectAll?: () => void; }