import { RootProps } from '../types'; export interface ActionSheetContextType { handleOpen?: () => void; handleClose?: () => void; } export declare const ActionSheetContext: import('react').Context>; declare const Root: ({ isOpen, children, className, position, type, expandable, shouldBlurOnClose, onOpen, onClose, }: RootProps) => import("react").JSX.Element; export default Root;