/** @packageDocumentation * @module PropertyGrid */ import { PropertyRecord } from "@bentley/ui-abstract"; import { FlatGridItemType, IMutableCategorizedPropertyItem, MutableCategorizedProperty } from "./MutableFlatGridItem"; /** * Mutable wrapper object for PropertyRecord with primitive valueFormat. * @beta */ export declare class MutableCategorizedPrimitiveProperty extends MutableCategorizedProperty implements IMutableCategorizedPropertyItem { constructor(record: PropertyRecord, parentSelectionKey: string, parentCategorySelectionKey: string, depth: number, overrideName?: string, overrideDisplayLabel?: string); get type(): FlatGridItemType.Primitive; getChildren(): IMutableCategorizedPropertyItem[]; } //# sourceMappingURL=MutableCategorizedPrimitiveProperty.d.ts.map