import React, { FC } from 'react'; declare type Props = { properties: Record>; onClick: (e: React.MouseEvent | React.KeyboardEvent, propertyPath: string) => void; activeProperty?: string; expanded?: boolean; modalContainer: string; }; declare const PropertiesTree: FC; export default PropertiesTree;