import * as React from 'react'; import { Omit } from '../core'; export interface Switchable { value?: string; onChange?: (value: string) => void; name?: string; checked?: boolean; } export interface SwitchGroupItemProps { value: string; } export declare type SwitchGroupItem

= React.ComponentClass & SwitchGroupItemProps>; export declare function makeSwitchGroupItem

(Component: React.ComponentType

): SwitchGroupItem

;