@chatscope/chat-ui-kit-react
Version:
React component library for creating chat interfaces
14 lines (11 loc) • 375 B
TypeScript
import type {ReactElement} from "react";
import type {ChatComponentPropsRef} from "../../types";
export interface SearchProps {
placeholder?:string;
value?:string;
onChange?:(value:string) => void;
onClearClick?:() => void;
disabled?:boolean;
}
export declare const Search: (props:ChatComponentPropsRef<SearchProps,"div">) => ReactElement;
export default Search;