16 lines
615 B
TypeScript
16 lines
615 B
TypeScript
import { ED } from '../../types/AbstractComponent';
|
|
import { RowWithActions } from '../..';
|
|
declare const _default: (props: import("../..").ReactComponentProps<import("oak-domain/lib/types").EntityDict & import("oak-domain/lib/base-app-domain").EntityDict, string | number, true, {
|
|
entity: keyof ED;
|
|
multiple: boolean;
|
|
onSelect: (value: [{
|
|
id: string;
|
|
}]) => void;
|
|
title: (row: RowWithActions<ED, keyof ED>) => string;
|
|
titleLabel: string;
|
|
filter: ED[keyof ED]["Filter"];
|
|
sorter: ED[keyof ED]["Sorter"];
|
|
projection: {};
|
|
}>) => React.ReactElement;
|
|
export default _default;
|