import { registerPlugin } from '@capacitor/core'; import type { ActionSheetPlugin } from './definitions'; const ActionSheet = registerPlugin('ActionSheet', { web: () => import('./web').then(m => new m.ActionSheetWeb()), }); export * from './definitions'; export { ActionSheet };