import { SchemaNodeData } from '../../types/schema'; export interface SchemaConstraintsProps { schema: SchemaNodeData; itemSchema?: SchemaNodeData | null; /** Property name shown in range notation, e.g. `0 ≤ score ≤ 100`. */ fieldName?: string; className?: string; } /** Renders validation constraints read directly from the schema. */ export default function SchemaConstraints({ schema, itemSchema, fieldName, className, }: SchemaConstraintsProps): import("react").JSX.Element;