import { FC, HTMLAttributes, Ref } from 'react'; export interface SheetHandleProps extends HTMLAttributes { /** * Ref forwarded to the root handle element. * Useful for focus management, gesture tracking, or integration with animation libraries. */ ref?: Ref; } /** The SheetHandle component provides a visual and interactive grip element at the top of a sheet, enhancing usability by indicating drag affordance and improving discoverability of gesture-based interactions. */ export declare const SheetHandle: FC;