/** @packageDocumentation * @module Properties */ import { PropertyRecord } from "@bentley/ui-abstract"; import { IPropertyValueRenderer, PropertyValueRendererContext } from "../../ValueRendererManager"; /** Default Navigation Property Renderer * @public */ export declare class NavigationPropertyValueRenderer 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): JSX.Element; } //# sourceMappingURL=NavigationPropertyValueRenderer.d.ts.map