import React from 'react'; import { Schema } from '../../types'; interface Props { name: string; hasDynamicName?: boolean; properties: Schema; treeSpace: number; description?: React.ReactNode; } export declare const SchemaPropertiesComponent: React.FunctionComponent; export {};