import { Schema, ValidationContext } from '../schema'; export declare class ArrayLikeSchema extends Schema { private _integers; integers(integers?: boolean): this; private _min; min(min: number): this; private readonly _max?; max(max: number): this; toTypeScript(): string; toSchema(): object; validate(baseValue: unknown, context: ValidationContext): void; }