import { Guard } from "../types";
export interface ArrayConstraints {
    minLength?: number;
    maxLength?: number;
    unique?: boolean;
}
declare const isArrayOf: <A>(itemGuard: Guard<A>, constraints?: ArrayConstraints) => Guard<A[]>;
export { isArrayOf };
//# sourceMappingURL=isArrayOf.d.ts.map