import { Schema, TsContext, ValidationContext } from '../schema'; export declare class ArraySchema extends Schema { private readonly _items; constructor(_items: Schema); toSchema(): object; toTypeScript(context: TsContext): string; validate(value: unknown, context: ValidationContext): void; }