UNPKG

stream-chat-react

Version:

React components to create chat conversations or livestream style chat

10 lines (9 loc) 343 B
import type { ComponentProps } from 'react'; import React from 'react'; export type ConfirmationDialogProps = { actions: ComponentProps<'button'>[]; prompt: string; className?: string; title?: string; }; export declare const PromptDialog: ({ actions, className, prompt, title, }: ConfirmationDialogProps) => React.JSX.Element;