import React, { FC } from "react"; export declare type InputChatProps = { styleWrapper?: React.CSSProperties; placeholder?: string; onClick: (value: string) => void; onChange?: (value: string) => void; disabled?: boolean; tips?: string[]; heightTips?: number; loadingTips?: boolean; }; export declare const InputChat: FC;