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