import { JSONSchema4 } from 'json-schema'; import { SchemaNode } from '../types'; export declare function getPrimaryType(node: JSONSchema4 | SchemaNode): "string" | "number" | "boolean" | "object" | "integer" | "array" | "null" | "any" | import("json-schema").JSONSchema4TypeName[] | undefined;