UNPKG

ze-react-component-library

Version:
16 lines (15 loc) 468 B
import { FC, CSSProperties } from "react"; import { LogicformAPIResultType } from "zeroetp-api-sdk"; import './index.less'; export declare type LLMChatterProps = { question: string; data: LogicformAPIResultType; avatarSrc?: string; promptTemplate?: string; style?: CSSProperties; bodyStyle?: CSSProperties; showSearch?: boolean; hide?: boolean; }; declare const LLMChatterWrapper: FC<LLMChatterProps>; export default LLMChatterWrapper;