import * as React from 'react'; import createStandard from './standard'; import 'reactui-mobile-mobile-styles/lib/ActionSheet'; interface ActionSheetOptions { maskClosable?: boolean; title?: React.ReactNode; items: (string | { value: string; warn?: boolean; })[]; } declare const _default: { show: (opts: ActionSheetOptions, cb?: (res?: { index: number; }) => void) => Promise<{ index: number; }>; standard: typeof createStandard; }; export default _default;