import type { Schema, SchemaProps } from '../types/index.js'; export declare class ListSchema { type: 'list'; elements: ELEMENTS; props: PROPS; constructor(elements: ELEMENTS, props: PROPS); get checked(): boolean; check(path?: string): void; }