import { OffsetStyle } from '../styling/offset-style';
import { MixedContentContext } from '../../editor/widget-framework/mixed-content-context';
export declare class AskBoxEntity {
    KnowledgeBoxName: string | null;
    ConfigurationName: string | null;
    RedirectPageMode: string;
    SearchResultsPage: MixedContentContext | null;
    Suggestions: string[];
    SfViewName: string;
    Margins?: OffsetStyle;
    SfWidgetLabel: string;
    CssClass: string | null;
    Placeholder: string;
    ButtonLabel: string;
    SuggestionsLabel: string;
    Attributes: {
        [key: string]: Array<{
            Key: string;
            Value: string;
        }>;
    } | null;
}
