import type { CSSProperties } from 'react';
import type { AgentData } from '../../sdk-types';
export interface EmptyStateProps {
    agent: AgentData | null;
    /** Preguntas sugeridas custom (override de agent.examples) */
    suggestedQuestions?: string[];
    onSuggestionClick?: (question: string) => void;
    style?: CSSProperties;
}
export declare function EmptyState({ agent, suggestedQuestions, onSuggestionClick, style }: EmptyStateProps): import("react/jsx-runtime").JSX.Element;
