import { CSSProperties } from 'react'; export interface BaseTypeProps { style?: CSSProperties | any; className?: string; } /** 指定挂载的节点 */ export declare type TeleportType = HTMLElement | (() => HTMLElement) | null; export declare type WithDisplayNameReactElement = React.ReactElement & { type: { displayName: string; }; };