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