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