@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
11 lines (10 loc) • 352 B
TypeScript
/// <reference types="react" />
import { ChatItemProps } from "..";
export interface TitleProps {
avatar: ChatItemProps['avatar'];
placement?: ChatItemProps['placement'];
showTitle?: ChatItemProps['showTitle'];
time?: ChatItemProps['time'];
}
declare const Title: import("react").NamedExoticComponent<TitleProps>;
export default Title;