import { IIsThemisSchema } from '../protocol'; import { ValidationSchemas } from '../../../../domain'; export declare class IsThemisSchemaAdapter implements IIsThemisSchema { private readonly abort; private readonly checkKey; constructor(abort: boolean); isSchema: (value: unknown) => value is ValidationSchemas; }