import { SchemaNode } from '@stoplight/json-schema-tree'; import type { ChangeType } from '@stoplight/types'; import * as React from 'react'; import { SchemaRowProps } from '../SchemaRow'; type ChildStackProps = { schemaNode: SchemaNode; childNodes: readonly SchemaNode[]; currentNestingLevel: number; className?: string; parentNodeId?: string; RowComponent?: React.FC; parentChangeType?: ChangeType; }; export declare const ChildStack: React.MemoExoticComponent<({ childNodes, currentNestingLevel, className, RowComponent, parentNodeId, parentChangeType, }: ChildStackProps) => React.JSX.Element>; export {};