import { type BaseType } from "./type.js"; /** * Build a callable omptype schema from a JSON Schema document. * * # Errors * Throws {@link OmpTypeError} on malformed nodes, unresolvable `$ref`s, or * types omptype cannot represent. */ export declare function fromJsonSchema(schema: unknown): BaseType;