@web3mq/react-components
Version:
web3mq-react-components
9 lines (8 loc) • 345 B
TypeScript
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>) => React.JSX.Element;