import { AnswerEntity } from './answer.entity';
import { AnswerViewProps } from './answer.view-props';
export interface AnswerStaticConfig {
    id: string;
    display: {
        mode: string;
        containerId: string;
    };
    chat: {
        bot: {
            name: string | null;
            avatarUrl: string | null;
        };
        labels: {
            feedbackPromptText: string | null;
            searchedPhraseLabel: string | null;
            feedbackYesTooltipText: string;
            feedbackNoTooltipText: string;
            feedbackThanks: string;
            showMoreLabel: string;
            showLessLabel: string;
            loadingLabel: string;
        };
    };
    serviceSettings: {
        serviceType: string;
        endpoint: string;
        showSources: boolean;
        showFeedbackButtons: boolean | null;
    };
}
export interface AnswerCdnUrls {
    jqueryUrl: string;
    markedUrl: string;
    chatJsUrl: string;
    chatServiceUrl: string;
    widgetJsUrl: string;
    widgetCssUrl: string;
}
export declare function AnswerDefaultView(props: AnswerViewProps<AnswerEntity>): import("react/jsx-runtime").JSX.Element;
