UNPKG

web3-mq-react

Version:
9 lines (8 loc) 339 B
import React, { PropsWithChildren } from 'react'; export declare type ChatAutoCompleteProps = { rows?: number; placeholder?: string; onChange?: React.ChangeEventHandler<HTMLTextAreaElement>; value?: string; }; export declare const ChatAutoComplete: (props: PropsWithChildren<ChatAutoCompleteProps>) => JSX.Element;