UNPKG

@chatui/core

Version:

The React library for Chatbot UI

7 lines (6 loc) 241 B
import React from 'react'; export type ClickOutsideProps = { onClick: (event: React.MouseEvent<HTMLElement>) => void; mouseEvent?: 'click' | 'mousedown' | 'mouseup'; }; export declare const ClickOutside: React.FC<ClickOutsideProps>;