import { KendoBubbleProps, KendoBubbleState } from '../bubble';
import React from 'react';
export type KendoChatBubbleProps = KendoBubbleProps & KendoBubbleState & {
    typing?: boolean;
    files?: React.JSX.Element | React.JSX.Element[];
};
export declare const ChatBubble: (props: KendoChatBubbleProps & Omit<React.HTMLAttributes<HTMLDivElement>, "content">) => import("react/jsx-runtime").JSX.Element;
