import type { BooleanSchemaProps } from './types.js'; export declare class BooleanSchema { type: 'boolean'; props: PROPS; constructor(props: PROPS); get checked(): boolean; check(path?: string): void; }