import React from 'react'; import { AiChatPageWrapperVariantProps } from '../../../../styled-system/system.js'; import { AIChatPageProps } from './AIChatPage/AIChatPage'; export declare enum ActiveScreenTypes { AIChat = "AI_CHAT", Form = "FORM" } interface AIChatContainerProps extends Omit { size?: NonNullable['size']; maxHeight?: object | string; isHidden?: boolean; } declare const AIChatContainer: React.FC; export default AIChatContainer;