import { Options } from '../Options'; import { Severity } from '../../enums'; export declare type RuleValue = readonly [Severity, (T | null)?]; export declare const isRuleValue: >(value: unknown) => value is RuleValue;