interface IBadges { index: number; type: string; text?: string; } /** * @see [description](https://docs.alipay.com/mini/api/ui-feedback) * show_action_sheet 显示操作菜单 * @example show_action_sheet(['菜单一', '菜单二', '菜单三'],'标题','取消好了','0',[{ index: 0, type: 'none' },{ index: 1, type: 'point' },{index: 2, type: 'num', text: '99' }]); */ export default function show_action_sheet(items: string[], title?: string, cancelButtonText?: string, destructiveBtnIndex?: string, badges?: IBadges[]): Promise<{ msg: number; success: boolean; }>; export {};