import { ValidationSchemas } from '../../../domain'; export interface IIsThemisSchema { isSchema(value: unknown): value is ValidationSchemas; } export declare namespace IIsThemisSchema { type CheckValueKey = { [K in keyof ValidationSchemas]: (propValue: ValidationSchemas[K]) => boolean; }; }