import React from "react"; import type { SchemaObject } from "../../types.d"; interface SchemaProps { schema: SchemaObject; schemaType: "request" | "response"; /** * Optional path identifier for tracking anyOf/oneOf selections. * When provided, tab selections will be dispatched to Redux state * to enable dynamic body example updates. */ schemaPath?: string; } declare const SchemaNode: React.FC; export default SchemaNode;