import { ViewPropsBase } from '../../common/view-props-base'; import { IntentDrivenContentEntity, NoIntentAction, SectionDto } from './intent-driven-content.entity'; export interface IntentDrivenContentViewProps extends ViewPropsBase { defaultQuery: string | null; language: string; noIntentAction: NoIntentAction; siteId: string; pageId: string; sections: SectionDto[]; isEdit: boolean; } export declare function IntentDrivenContentDefaultView(props: IntentDrivenContentViewProps): import("react/jsx-runtime").JSX.Element;