@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
14 lines (13 loc) • 451 B
text/typescript
import { DivProps } from "../../types/index.mjs";
import * as react32 from "react";
import { ReactNode } from "react";
//#region src/brand/LobeChat/index.d.ts
interface LobeChatProps extends DivProps {
extra?: ReactNode;
size?: number;
type?: '3d' | 'flat' | 'mono' | 'text' | 'combine';
}
declare const LobeChat: react32.NamedExoticComponent<LobeChatProps>;
//#endregion
export { LobeChat, LobeChatProps };
//# sourceMappingURL=index.d.mts.map