import React from 'react';
interface TooltipProps {
    /** 是否显示箭头 */
    arrow?: boolean;
    /** 主题风格 */
    theme?: 'light' | 'dark';
    /** 自定义样式 */
    customStyle?: {
        /** 弹出层外层 padding */
        popupWrapperPadding?: string;
    };
}
declare const Tooltip: ({ popup: _popup, theme, popupClassName, arrow, placement, customStyle, ...rest }: TooltipProps & any) => React.JSX.Element;
export default Tooltip;
