web3-mq-react
Version:
web3-mq-react-components
8 lines (7 loc) • 332 B
TypeScript
import { PropsWithChildren } from 'react';
import { ComponentContextValue } from '../../context/ComponentContext';
export declare type MessageInputProps = {
isThread?: boolean;
Input?: ComponentContextValue['Input'];
};
export declare const MessageInput: (props: PropsWithChildren<MessageInputProps>) => JSX.Element;