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;
