import type { ActionSheetMenuOrActions } from './types'; interface ActionSheetOptions { title?: string; menus?: ActionSheetMenuOrActions[]; actions?: ActionSheetMenuOrActions[]; onClick?: (item: ActionSheetMenuOrActions) => void; onClose?: () => void; } export declare function actionSheet(options: ActionSheetOptions): () => void; export {};