import XVType from '../XVType.js'; import { Infer } from '../types.js'; declare class XVArray> extends XVType[]> { readonly Arraytype: T; constructor(Arraytype: T); protected check(input: unknown): Infer[]; min(length: number): this; max(length: number): this; unique(): this; } export { XVArray as default };