import { JudoRestApi } from '@judo/actions'; import { Link, RelationType } from '@judo/model-api'; type OptionRecord = Record; export interface LinkSelectorDialogProps { open: boolean; element: Link; relationType: RelationType; api: JudoRestApi; transfer?: OptionRecord; onConfirm: (selected: OptionRecord) => void; onCancel: () => void; } /** * A selector dialog for Link components. * * Shows a DataGrid table with the available relation range, * supports text filtering, pagination, and single-row selection. */ export declare function LinkSelectorDialog({ open, element, relationType, api, transfer, onConfirm, onCancel, }: LinkSelectorDialogProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=LinkSelectorDialog.d.ts.map