@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
10 lines (9 loc) • 353 B
TypeScript
import * as React from 'react';
import { TypographyProps } from '@mui/material/Typography';
type Props = {
pSlot: React.JSXElementConstructor<TypographyProps>;
pSlotProps: TypographyProps;
inProgress: boolean;
} & React.JSX.IntrinsicElements['p'];
declare const _default: React.NamedExoticComponent<Props>;
export default _default;