@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
10 lines (9 loc) • 332 B
TypeScript
import { type ReactNode } from 'react';
import { DivProps } from "../../types";
export interface LobeChatProps extends DivProps {
extra?: ReactNode;
size?: number;
type?: '3d' | 'flat' | 'mono' | 'text' | 'combine';
}
declare const LobeChat: import("react").NamedExoticComponent<LobeChatProps>;
export default LobeChat;