import { SchemaNodeData } from '../../types/schema'; export interface SchemaTypeLabelProps { schema: SchemaNodeData; refLabel?: string; className?: string; } /** Renders the structural type string for a schema node. */ export default function SchemaTypeLabel({ schema, refLabel, className, }: SchemaTypeLabelProps): import("react").JSX.Element;