import { Runtype } from './runtype'; export declare const arrayRuntype: Runtype; /** * An array of a given type. * * Options: * * minLength .. reject arrays shorter than that * maxLength .. reject arrays longer than that */ export declare function array(a: Runtype, options?: { maxLength?: number; minLength?: number; }): Runtype;