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