import type { MutableRefObject } from 'react'; interface DragableDrawerContextValue { /** Whether the drawer has settled at maximum height (offset === 0). */ isAtMaxHeight: boolean; /** Current vertical scroll offset reported by DragableScrollView. */ scrollYRef: MutableRefObject; /** Report scroll offset changes from DragableScrollView. */ onScrollY: (y: number) => void; /** Begin a drawer pan gesture (stops any running animation). */ beginPan: () => void; /** Move the drawer by dy pixels during an active pan. */ movePan: (dy: number) => void; /** End pan and snap to the nearest snap point. */ releasePan: (dy: number, vy: number) => void; } declare const DragableDrawerContext: import("react").Context; export declare const useDragableDrawerContext: () => DragableDrawerContextValue; export default DragableDrawerContext;