import { EditorProperty } from "@iplusplus/y-model"; import React from "react"; import { PropertyGridValues } from "./types"; export type PropertyGridProps = { values: PropertyGridValues; onNewValueSubmit: (prop: EditorProperty, newValue: unknown) => void; onEditStateNotify?: (isInEdit: boolean) => void; disableEditFields?: string[]; }; export declare const PropertyGrid: React.NamedExoticComponent;