export interface ActionSheet { title: string; message: string; cancelText?: string; onCancel?: () => void; actions: string[]; onSelect?: (index: number) => void; } /** * 显示操作菜单 * * @param option - 操作菜单配置 */ declare function showActionSheet(option: ActionSheet): void; export default showActionSheet;