export interface ActionSheetSelectResult { buttonIndex: number; } export interface ActionSheetParams { title: string; cancelButton: string; otherButtons: string[]; } declare function showActionSheet(params: ActionSheetParams): Promise; declare namespace showActionSheet { var version: { android: string; ios: string; pc: string; }; } export default showActionSheet;