import type { IconName } from '../../atoms/Icon'; export interface ConfirmActionSheetOption { key: string; label: string; icon?: IconName; destructive?: boolean; disabled?: boolean; onPress: () => void; } export interface ConfirmActionSheetProps { visible: boolean; onClose: () => void; options: ConfirmActionSheetOption[]; title?: string; description?: string; }