import { Link, PageDefinition } from '@judo/model-api'; export interface LinkRendererProps { element: Link; page?: PageDefinition; readOnly?: boolean; } /** * Renderer for Link (autocomplete/relation) elements. * * Supports: * - Typeahead autocomplete with backend fetch (getRelationRange) * - Action buttons: View, Set (selector dialog), Unset, Create, Delete * - Selector dialog with DataGrid, filtering, pagination * - Read-only mode */ export declare function LinkRenderer({ element, page: pageProp, readOnly }: LinkRendererProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=LinkRenderer.d.ts.map