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