export interface ActionSheetOption { text?: string; description?: string; color?: string; disabled?: boolean; cssClass?: string | Array | object; handler?: (value?: T) => void | { [key: string]: T; }; } export interface ActionSheetOptions { backdropDismiss?: boolean; title?: string; subtitle?: string; cancelText?: string; options?: Array; closeable?: boolean; closeIcon?: string; }