UNPKG

@chatui/core

Version:

The React library for Chatbot UI

9 lines (8 loc) 208 B
import React from 'react'; export type PopoverProps = { className?: string; active: boolean; target: HTMLElement; onClose: () => void; }; export declare const Popover: React.FC<PopoverProps>;