import { type Static } from '../type/types/static.mjs'; import * as Schema from './types/index.mjs'; /** Checks a value against the provided schema */ export declare function Check(schema: Schema, value: unknown): value is Static; /** Checks a value against the provided schema */ export declare function Check(context: Record, schema: Schema, value: unknown): value is Static;