// Type definitions for moonstone/FormCheckboxItem import { ToggleItemProps as moonstone_ToggleItem_ToggleItemProps } from "@enact/moonstone/ToggleItem"; import * as React from "react"; type Omit = Pick>; type Merge = Omit> & N; export interface FormCheckboxItemProps 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: * * `formCheckboxItem` - The root class name */ css?: object; } /** * Renders a form item with a checkbox component. Useful to show a selected state on an item inside a form. */ export class FormCheckboxItem extends React.Component< Merge, FormCheckboxItemProps> > {} export default FormCheckboxItem;