import type { ValidationContext, Validator } from '../Validator.js'; import type { Comparable } from '../types.js'; export interface MaxValidatorOptions { maxValue: T; exclusive?: boolean; message?: (params: ValidationContext & { maxValue: T; value: T; }) => string; } export declare function maxValidator(options: MaxValidatorOptions): Validator;