import { NoIntentAction, SectionDto } from './intent-driven-content.entity';
export interface DynamicallyGeneratedClientProps {
    defaultQuery: string | null;
    noIntentAction: NoIntentAction;
    language: string;
    siteId: string;
    pageId: string;
    sections: SectionDto[];
    isEdit: boolean;
}
export declare function IntentDrivenContentClient(props: DynamicallyGeneratedClientProps): (import("react/jsx-runtime").JSX.Element | null | undefined)[];
