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