import type { EntityMaskPattern, ParsedPage, RuleResult } from "../../types.js"; export interface CitableFactsOptions { /** Below this count → error. Default: 3. */ minFactsPerPage?: number; /** At or above this count → pass. Default: 8. */ targetFactsPerPage?: number; } export declare function citableFactsRule(pages: ParsedPage[], entityPatterns: EntityMaskPattern[], options?: CitableFactsOptions): RuleResult[]; //# sourceMappingURL=citable-facts.d.ts.map