import * as React from "react"; import { ITooltipProps } from "../Tooltip/Tooltip"; interface IProps extends ITooltipProps { /** * 自定义外框宽度 * * @default **/ width?: number | string; /** * 自定义外框高度 * * @default **/ height?: number | string; /** * 自定义外框位置 * * @default **/ direction: "up" | "down"; /** * 自定义外框样式 * * @default **/ style?: React.CSSProperties; /** * 自定义外框class * * @default **/ className?: string; } declare const Poptip: (props: IProps) => JSX.Element; export default Poptip;