import { SyncValidation, NodeSubType } from '../../types.js'; /** * Ensure the length of an array of a string is under the * defined length */ export declare const maxLength: SyncValidation<{ maxLength: number; subtype: NodeSubType; }>;