import { KendoPromptBoxProps } from '../prompt-box';
import { KendoComponent } from '../_types/component';
export type KendoChatProps = {
    header?: React.JSX.Element;
    dir?: "ltr" | "rtl";
    suggestedActions?: React.JSX.Element;
    files?: React.JSX.Element;
    pinned?: string | React.JSX.Element;
    replied?: string | React.JSX.Element;
    generating?: boolean;
    tools?: React.JSX.Element | React.JSX.Element[];
    value?: string;
    empty?: boolean;
    scrollToBottom?: boolean;
    scrollbar?: boolean;
    promptBoxProps?: Partial<KendoPromptBoxProps>;
};
export declare const Chat: KendoComponent<KendoChatProps & React.HTMLAttributes<HTMLDivElement>>;
export default Chat;
