import { SchemaNodeData } from '../../types/schema'; export interface TypeDisplay { text: string; format?: string; refHint?: string; } /** Builds structured type display for SchemaTypeLabel. */ export declare const buildTypeDisplay: (schema: SchemaNodeData, refLabel?: string) => TypeDisplay; /** Whether to show a separate ref footnote beside the type label. */ export declare const shouldShowRefFootnote: (schema: SchemaNodeData, refLabel?: string) => boolean;