import * as react from 'react'; import { InputHTMLAttributes } from 'react'; interface SwitchProps extends Omit, 'type'> { label?: string; } declare const Switch: react.ForwardRefExoticComponent>; export { Switch, type SwitchProps };