import React from "react";
import "./Index.scss";
interface Props {
    wrapperClassName?: string;
    delay?: number;
    color?: string;
    children: React.ReactNode;
    content: string | React.ReactNode;
    position?: "top" | "bottom" | "right" | "left";
}
export default function ToolTips({ wrapperClassName, delay, color, children, content, position, }: Props): JSX.Element;
export {};
