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