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