import type { ParsedPage, RuleResult } from "../../types.js"; export interface NonReplicableValueOptions { /** Extra selectors that count as interactive/non-replicable. */ interactiveSelectors?: string[]; /** Severity override. Default: "warning". */ severity?: "info" | "warning" | "error"; } export declare function nonReplicableValueRule(pages: ParsedPage[], options?: NonReplicableValueOptions): RuleResult[]; //# sourceMappingURL=non-replicable-value.d.ts.map