UNPKG

@progress/kendo-themes-html

Version:

A collection of HTML helpers used for developing Kendo UI themes

20 lines (19 loc) 699 B
import { KendoPromptBoxProps } from '../prompt-box'; import { KendoComponent } from '../_types/component'; export type KendoChatProps = { header?: React.JSX.Element; dir?: "ltr" | "rtl"; suggestedActions?: React.JSX.Element; files?: React.JSX.Element; pinned?: string | React.JSX.Element; replied?: string | React.JSX.Element; generating?: boolean; tools?: React.JSX.Element | React.JSX.Element[]; value?: string; empty?: boolean; scrollToBottom?: boolean; scrollbar?: boolean; promptBoxProps?: Partial<KendoPromptBoxProps>; }; export declare const Chat: KendoComponent<KendoChatProps & React.HTMLAttributes<HTMLDivElement>>; export default Chat;