import * as React from 'react';
export interface INewPropertyProps {
    nodeData: any;
    singleProperty: any;
    nameChange: (name: string) => boolean;
    placement: any;
    isArray: boolean;
    getButtonContent: () => React.ReactNode;
}
export declare const NewProperty: (props: INewPropertyProps) => import("react/jsx-runtime").JSX.Element;
