UNPKG

@vchatcloud/react-ui-kit

Version:

VChatCloud UI Kit for react integration

9 lines (8 loc) 389 B
import { HTMLAttributes } from 'react'; interface InvitePopupProps { readonly loading: boolean; readonly onCancel: () => void; readonly onSendInvite: (emails: string[]) => void; } declare const InvitePopup: ({ onCancel, onSendInvite, loading, ...rest }: InvitePopupProps & HTMLAttributes<HTMLDivElement>) => import("react/jsx-runtime").JSX.Element; export default InvitePopup;