import { RankingRule } from "../rule"; import { AgainstRuleSet } from "../againstRuleSet"; export declare class RankingRuleGetter { getRules(ruleSet: AgainstRuleSet | undefined, useSubScore: boolean): RankingRule[]; protected getAgainstRules(ruleSet: AgainstRuleSet, useSubScore: boolean): RankingRule[]; protected getTogetherRules(useSubScore: boolean): RankingRule[]; }