import type { HTMLProps, FunctionComponent } from 'react';
export interface ChatbotContentProps extends HTMLProps {
/** Content to be displayed in the chatbot */
children: React.ReactNode;
/** Custom classname for the ChatbotContent component */
className?: string;
/** Sets background color to primary */
isPrimary?: boolean;
}
export declare const ChatbotContent: FunctionComponent;
export default ChatbotContent;