import { HTMLProps, PolymorphicProps } from '../factory'; import { ForwardRefExoticComponent, RefAttributes } from 'react'; export interface BottomSheetGrabberBaseProps extends PolymorphicProps { } export interface BottomSheetGrabberProps extends HTMLProps<'div'>, BottomSheetGrabberBaseProps { } export declare const BottomSheetGrabber: ForwardRefExoticComponent>;