/// <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;
