export type SnapPosition = "collapsed" | "half" | "full"; interface MobileBottomSheetProps { children: React.ReactNode; summary: React.ReactNode; /** Controlled snap position from parent. */ snap?: SnapPosition; /** Notify parent when snap changes (drag or tap). */ onSnapChange?: (snap: SnapPosition) => void; } export declare function MobileBottomSheet({ children, summary, snap: controlledSnap, onSnapChange, }: MobileBottomSheetProps): import("react").JSX.Element; export {}; //# sourceMappingURL=MobileBottomSheet.d.ts.map