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