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