// Type definitions for moonstone/RadioItem import { ToggleItemProps as moonstone_ToggleItem_ToggleItemProps } from "@enact/moonstone/ToggleItem"; import * as React from "react"; type Omit = Pick>; type Merge = Omit> & N; export interface RadioItemProps extends Omit { /** * Customizes the component by mapping the supplied collection of CSS class names to the corresponding internal elements and states of this component. * * The following classes are supported: * * `radioItem` - The root class name */ css?: object; } /** * Renders an `Item` with a radio-dot icon. */ export class RadioItem extends React.Component< Merge, RadioItemProps> > {} export default RadioItem;