/// import { SelectProps } from "antd/lib/select"; import { LabeledValue } from "antd/lib/tree-select"; import { QueryParameter } from "../query/use-data"; export declare type SelectEntityProps = { url: string; name: string; map: (v: T) => LabeledValue; customItems?: LabeledValue[]; initialParameters?: Partial; } & Omit, "fetcher">; export declare function SelectEntity({ url, name, map, onSearch, customItems, initialParameters, onSelect, ...restProps }: SelectEntityProps): JSX.Element; //# sourceMappingURL=select-entity.d.ts.map