react-19-kit
Version:
Ready-to-use Chat UI Components for React(Javascript/Web)
12 lines (11 loc) • 367 B
TypeScript
interface DocumentBubbleProps {
bannerImage: string;
title: string;
URL: string;
subtitle: string;
buttonText: string;
isSentByMe?: boolean;
onClicked: ((url: string) => void) | undefined;
}
declare const CometChatDocumentBubble: (props: DocumentBubbleProps) => import("react/jsx-runtime").JSX.Element;
export { CometChatDocumentBubble };