UNPKG

web3-mq-react

Version:
10 lines (9 loc) 519 B
import React, { PropsWithChildren } from 'react'; import { AppTypeEnum } from '../../context/ChatContext'; import type { ChannelActionContextValue } from '../../context/ChannelActionContext'; export declare type ThreadHeaderProps = { title: string; appType?: AppTypeEnum; close: ChannelActionContextValue['closeThread'] | ChannelActionContextValue['closeAllThreadList']; }; export declare const ThreadHeader: React.MemoExoticComponent<(props: PropsWithChildren<ThreadHeaderProps>) => JSX.Element>;