web3-mq-react
Version:
web3-mq-react-components
8 lines (7 loc) • 379 B
TypeScript
import React, { PropsWithChildren } from 'react';
import { ComponentContextValue } from '../../context/ComponentContext';
export declare type ThreadProps = {
Input?: ComponentContextValue['Input'];
Message?: ComponentContextValue['Message'];
};
export declare const Thread: React.MemoExoticComponent<(props: PropsWithChildren<ThreadProps>) => JSX.Element | null>;