import React from "react"; interface Item { value: string; label: string; } interface IProps { value?: any; onChange?: (items: Item[]) => void; placeholder?: string; } export declare const CustomRadio: React.FC; export default CustomRadio;