import React from "react";
import type { Props } from "./types";
/**
 * @deprecated use useClickOutside hook instead
 */
export default function ClickOutside({ children, onClickOutside }: Props): React.JSX.Element;
