UNPKG

@vnmfify/core

Version:

```shell npm i @vnmfify/core -S ```

9 lines (8 loc) 354 B
/// <reference types="react" /> import { SheetProps } from "../sheet"; import { ActionSheetActionObject } from "./action-sheet.shared"; export interface ActionSheetProps extends SheetProps { onSelect?: (event: ActionSheetActionObject) => void; } declare function ActionSheet(props: ActionSheetProps): JSX.Element; export default ActionSheet;