// Type definitions for moonstone/SwitchItem import { ToggleItemProps as moonstone_ToggleItem_ToggleItemProps } from "@enact/moonstone/ToggleItem"; import * as React from "react"; type Omit = Pick>; type Merge = Omit> & N; export interface SwitchItemProps 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: * * `switchItem` - The root class name */ css?: object; } /** * Renders an item with a . */ export class SwitchItem extends React.Component< Merge, SwitchItemProps> > {} export default SwitchItem;