import type { ComponentPropsWithoutRef } from 'react'; type ModalBackdropProps = ComponentPropsWithoutRef<'div'>; declare function ModalBackdrop({ className, onClick, ...props }: ModalBackdropProps): import("react/jsx-runtime").JSX.Element; export default ModalBackdrop; export type { ModalBackdropProps };