import * as st from "simple-runtypes";
import { Runtype } from 'simple-runtypes';
export declare function validationArray<A>(elementRuntype: Runtype<A>, options?: {
    maxLength?: number;
    minLength?: number;
}): Runtype<st.ValidationResult<A>[]>;
