web3-mq-react
Version:
web3-mq-react-components
10 lines (9 loc) • 519 B
TypeScript
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>;