/// <reference types="react" />
import { ActionSheetActionObject } from "./action-sheet.shared";
interface ActionSheetContextProps {
    onSelect?: (object: ActionSheetActionObject) => void;
}
declare const ActionSheetContext: import("react").Context<ActionSheetContextProps>;
export default ActionSheetContext;
