import { Static, TObject } from "@sinclair/typebox"; /** * validateSafe * Typeguard - check a value matches a schema * * @param json * @param schema * @returns {boolean} */ export declare const validateSafe: (json: unknown, schema: T) => json is Static; /** * validate * Type assertion - assert a value matches a schema * * @param json * @param schema * @throws Error - list of issues */ export declare function validate(json: unknown, schema: T): asserts json is Static;