import { OverrideProps } from '@bifrostui/types'; import React from 'react'; import { FadeProps } from '../Fade/Fade.types'; import { TransitionProps } from '../Transition'; export interface BackdropTypeMap { props: P & { open?: boolean; /** * 是否透明不可见 * - default:false */ invisible?: boolean; transitionDuration?: TransitionProps['timeout']; } & Omit; defaultComponent: D; } export type BackdropProps = OverrideProps, D>;