/** @packageDocumentation * @module Properties */ import * as React from "react"; import { PropertyRecord } from "@bentley/ui-abstract"; import { IPropertyValueRenderer, PropertyValueRendererContext } from "../../ValueRendererManager"; /** Default Array Property Renderer * @public */ export declare class ArrayPropertyValueRenderer implements IPropertyValueRenderer { /** Checks if the renderer can handle given property */ canRender(record: PropertyRecord): boolean; /** Method that returns a JSX representation of PropertyRecord */ render(record: PropertyRecord, context?: PropertyValueRendererContext): React.ReactNode; } //# sourceMappingURL=ArrayPropertyValueRenderer.d.ts.map