/// /// export interface ActionSheetItem { label: string; color?: string; disabled?: boolean; icon?: string; } declare type Context = WechatMiniprogram.Page.TrivialInstance | WechatMiniprogram.Component.TrivialInstance; export declare enum ActionSheetTheme { List = "list", Grid = "grid" } interface ActionSheetProps { align: 'center' | 'left'; cancelText?: string; count?: number; description: string; items: Array; showCancel?: boolean; theme?: ActionSheetTheme; visible: boolean; defaultVisible?: boolean; } export interface ActionSheetShowOption extends Omit { context?: Context; selector?: string; } export declare const show: (options: ActionSheetShowOption) => WechatMiniprogram.Component.TrivialInstance; export declare const close: (options: ActionSheetShowOption) => void; export {};