@douyinfe/semi-ui
Version:
A modern, comprehensive, flexible design system and UI library. Connect DesignOps & DevOps. Quickly build beautiful React apps. Maintained by Douyin-fe team.
11 lines (10 loc) • 426 B
TypeScript
import React, { ReactNode } from 'react';
import { Message, Metadata, RenderTitleProps } from '../interface';
interface ChatBoxTitleProps {
children?: ReactNode | undefined | any;
role?: Metadata;
message?: Message;
customRenderFunc?: (props: RenderTitleProps) => ReactNode;
}
declare const ChatBoxTitle: React.MemoExoticComponent<(props: ChatBoxTitleProps) => React.JSX.Element>;
export default ChatBoxTitle;