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