@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
12 lines (11 loc) • 449 B
TypeScript
import * as React from 'react';
import { HistoryProps } from '../core/history/HistoryType';
import { ApiRefType } from '../core/useApiRef';
import { LangKeys } from '../../locale/Localization';
export type HistoryComponentProps = {
apiRef: React.MutableRefObject<ApiRefType | null>;
loading?: boolean;
lang?: LangKeys;
} & Partial<HistoryProps>;
declare const History: React.FC<HistoryComponentProps>;
export default History;