/** * Filtering and sorting functions for skill results */ import type { SkillScoreResult } from './types.js'; /** * Filters skill results to only those meeting the activation threshold. * * @param results - Array of skill score results * @param threshold - Minimum score required for activation * @returns New array with only results where score >= threshold */ export declare function filterByThreshold(results: SkillScoreResult[], threshold: number): SkillScoreResult[]; /** * Sorts skill results by score descending, with name as tiebreaker. * * @param results - Array of skill score results * @returns New array sorted by score descending, then name ascending */ export declare function sortDescendingByScore(results: SkillScoreResult[]): SkillScoreResult[]; //# sourceMappingURL=filtering.d.ts.map