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