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