import { AskBoxEntity } from './ask-box.entity'; import { ViewPropsBase } from '../common/view-props-base'; export interface AskBoxViewProps extends ViewPropsBase { knowledgeBoxName: string | null; searchConfigurationName: string | null; resultsPageUrl: string | null; suggestions: string; placeholder: string; buttonLabel: string; suggestionsLabel: string; activeClass: string; visibilityClassHidden: string; searchAutocompleteItemClass: string; }