/** * Generic string validator HOF, takes a min value and a max value and pushed errors if input does not * * @param {number} [minLength=0] * @param {number} [maxLength=400] */ export declare const validateStringLength: (minLength?: number, maxLength?: number) => (value: string) => string[];