/**
 * Representation of the 'SearchScores' schema.
 */
export type SearchScores = {
    aggregatedScore: {
        value?: number;
    } & Record<string, any>;
    denseRetrievalScore: {
        value?: number;
    } & Record<string, any>;
} & Record<string, any>;
//# sourceMappingURL=search-scores.d.ts.map