@plteam/chat-ui
Version:
CUI Kit is a free and open-source library for creating AI assistant chat interfaces, built with React, Material UI, and TypeScript
11 lines (10 loc) • 392 B
TypeScript
import * as React from 'react';
import { HistoryProps } from '../core/history/HistoryType';
import { ApiRefType } from '../core/useApiRef';
export type HistoryComponentProps = {
apiRef: React.MutableRefObject<ApiRefType | null>;
loading?: boolean;
lang?: string;
} & Partial<HistoryProps>;
declare const History: React.FC<HistoryComponentProps>;
export default History;