import { Renderable, TNode } from '@tempots/dom'; import type { SchemaContext } from '../json-schema/schema-context'; import type { Mismatch } from './mismatch'; /** * Display wrapper component. * Renders label (from ctx.widgetLabel), required indicator, deprecated badge, * description, and mismatch indicators around content. * Analog of Field + WithSchemaIssues for display mode. */ export declare function DisplayWrapper({ ctx, mismatches, children, }: { ctx: SchemaContext; mismatches?: Mismatch[]; children: TNode; }): Renderable;