@ant-design/pro-chat
Version:
a solution for ai chat
12 lines (11 loc) • 376 B
TypeScript
/// <reference types="react" />
import { ChatItemProps } from "..";
export interface TitleProps {
avatar: ChatItemProps['avatar'];
placement?: ChatItemProps['placement'];
showTitle?: ChatItemProps['showTitle'];
time?: ChatItemProps['time'];
className?: string;
}
declare const Title: import("react").NamedExoticComponent<TitleProps>;
export default Title;