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