import ConstraintInterface from "./ConstraintInterface";
declare class Max implements ConstraintInterface {
    max: number;
    constructor(max: number);
    validate(data: string): boolean;
    getErrorMessage(): string;
}
export default Max;
