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