import { EditorProperties, EditorProperty } from "@iplusplus/y-model"; export type PropertyGridValues = { property: EditorProperty; value: unknown; }[]; export declare function getPropertyGridValues(data: Record, props: EditorProperties): PropertyGridValues;