stream-chat-react
Version:
React components to create chat conversations or livestream style chat
9 lines (8 loc) • 318 B
TypeScript
import React, { ComponentProps } 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;