/**
 * Representation of the 'KeyWordRetrievalScoringConfiguration' schema.
 */
export type KeyWordRetrievalScoringConfiguration = {
    /**
     * Enable dense retrieval.
     * Default: true.
     */
    enabled?: boolean | null;
    /**
     * Contribution to final score.
     * Default: 1.
     */
    weight?: number | null;
    /**
     * Extract Keywords from Query.
     */
    extractKeyWordsFromQuery?: boolean | null;
} & Record<string, any>;
//# sourceMappingURL=key-word-retrieval-scoring-configuration.d.ts.map