import { WidgetMetadata } from '../../editor/widget-framework/widget-metadata'; import { GetWidgetsArgs } from '../../editor/renderer-contract-interfaces'; /** * Widget filter function for Answer widget. * Filters the widget based on whether the Agentic RAG Connector module is enabled in Sitefinity. * @param widgetMetadata The metadata of the widget to filter. * @param args The arguments from the getWidgets call containing toolbox, category, search criteria. * @returns Promise True if the widget should be included in the results, false otherwise. */ export declare function filterAnswerWidget(widgetMetadata: WidgetMetadata, args: GetWidgetsArgs): Promise;