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;
