import React from 'react';
interface TooltipEleProps {
    content: string | React.ReactNode;
    left: number;
    top: number;
    width: number;
    height: number;
    cRef: React.RefObject<any>;
    align?: string;
    color?: string;
    zIndex?: number;
}
declare function TooltipEl(props: TooltipEleProps): JSX.Element;
declare const _default: React.MemoExoticComponent<typeof TooltipEl>;
export default _default;
