import { SchemaNode } from '@stoplight/json-schema-tree'; import { SpaceVals } from '@stoplight/mosaic'; import type { ChangeType } from '@stoplight/types'; import * as React from 'react'; export interface SchemaRowProps { schemaNode: SchemaNode; nestingLevel: number; pl?: SpaceVals; parentNodeId?: string; parentChangeType?: ChangeType; } export declare const SchemaRow: React.FunctionComponent;