UNPKG

@chatui/core

Version:

The React library for Chatbot UI

8 lines (7 loc) 293 B
import React from 'react'; export type ClickOutsideProps = { onClick: (event: React.MouseEvent<HTMLElement>) => void; mouseEvent?: 'click' | 'mousedown' | 'mouseup'; children?: React.ReactNode; }; export declare const ClickOutside: (props: ClickOutsideProps) => React.JSX.Element;