ze-react-component-library
Version:
ZeroETP React Component Library
16 lines (15 loc) • 468 B
TypeScript
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;