import React, { FC } from "react"; export declare type ChatInputSearchProps = { styleWrapper?: React.CSSProperties; placeholder?: string; onClick?: (value: string) => void; onChange?: (value: string) => void; disabled?: boolean; loading?: boolean; }; export declare const ChatInputSearch: FC;