import type { HTMLAttributes } from "react";
export interface BackdropProps extends HTMLAttributes {
/** 控制Backdrop开关状态 */
open: boolean;
/**
*
* 如果为true,Backdrop将是不可见的。可以用在Popover、Tooltips、Select等组件
*
* @default false
* */
hideBackdrop?: boolean;
timeout?: number;
unmountOnExit?: boolean;
}