import { Validator } from '../validator.type';
export declare function defaultMaxLengthMessageFactory(max: number, elementsLabel?: string): string;
export declare function createMaxLengthValidator(createMsg: (max: number, elementsLabel?: string) => string): <T extends string | any[] | null>(max: number, elementsLabel?: string) => Validator<T>;
