export type CnActionSheetOptionProps = string | {
    /**
     * 选项唯一标识
     */
    key?: string;
    /**
     * 选项的文本
     */
    text?: string;
    /**
     * 选项的图标
     */
    iconType?: string;
    /**
     * 选项的徽标值
     */
    badge?: number | string;
    /**
     * 选项的徽标类型
     */
    badgeType?: 'normal' | 'dot';
};
