import * as React from "react"; import { RadioProps } from "antd"; interface Option { value: string | number; label: React.ReactNode; } export declare type SelectEntityPropsRadioGroup = { url: string; name: string; map: (v: T) => Option; onSelectEntity?: (v: T | null) => void; } & Omit; export declare function SelectEntityRadioGroup({ url, name, map, onSelectEntity, ...restProps }: SelectEntityPropsRadioGroup): JSX.Element; export {}; //# sourceMappingURL=select-entity-radio-group.d.ts.map