import { AiChatSuggestion, CommonComponentProps } from '../types'; import { AiChatEmptyStatePropsSchema } from '../typesSchema'; export interface AiChatEmptyStateProps extends CommonComponentProps, Omit { suggestions?: AiChatSuggestion[]; } export declare const AiChatEmptyState: React.FC; export default AiChatEmptyState;