@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
8 lines (7 loc) • 407 B
TypeScript
import { KendoBubbleProps, KendoBubbleState } from '../bubble';
import React from 'react';
export type KendoChatBubbleProps = KendoBubbleProps & KendoBubbleState & {
typing?: boolean;
files?: React.JSX.Element | React.JSX.Element[];
};
export declare const ChatBubble: (props: KendoChatBubbleProps & Omit<React.HTMLAttributes<HTMLDivElement>, "content">) => import("react/jsx-runtime").JSX.Element;