import type { StandardJSONSchemaV1 } from "#compiled/@standard-schema/spec/index.js"; import { type JsonObject } from "#shared/json.js"; type JsonSchemaDirection = "input" | "output"; /** * Normalizes one Standard Schema or JSON Schema definition into plain JSON * Schema data that can cross eve runtime and client boundaries. */ export declare function normalizeJsonSchemaDefinition(value: StandardJSONSchemaV1 | Record | unknown, direction?: JsonSchemaDirection): JsonObject; export {};