import type { ReactNode } from "react"; import { type SheetProps } from "../sheet"; import type { ActionSheetActionObject } from "./action-sheet.shared"; export interface ActionSheetProps extends SheetProps { description?: ReactNode; cancelText?: ReactNode; actions?: ActionSheetActionObject[]; onSelect?: (event: ActionSheetActionObject) => void; } declare function ActionSheet({ description, cancelText, actions, className, onSelect, children: childrenProp, safeArea, ...restProps }: ActionSheetProps): JSX.Element; export default ActionSheet;