import { IAccessibilityPropTypes } from '@utils/accessibility-helper'; import { ColorType } from '@hyperOS/styles/Styles'; export interface ActionSheetOption { label: string; type?: 'default' | 'warning' | 'emphasis'; colorType?: ColorType; disabled?: boolean; onPress?: () => void; } export interface ActionSheetProps extends IAccessibilityPropTypes { visible: boolean; title?: string; options: ActionSheetOption[]; cancelText?: string; onCancel?: () => void; }