import type { ArrayValidation } from './types'; import * as yup from 'yup'; /** Value-level rules of `arrayValidationSchema`. Judges a real value — `null` / `undefined` are decided by the schema modifiers the caller adds. */ export declare const isValidArray: (items: TItem[], rules: ArrayValidation) => boolean; export declare const arrayValidationSchema: (rules: ArrayValidation) => yup.ArraySchema;