import React, { ChangeEvent, InputHTMLAttributes } from 'react';
interface ISwitchProps extends InputHTMLAttributes {
className?: string;
onChange?: (event: ChangeEvent) => void;
messages?: string | string[];
}
declare const Switch: React.ForwardRefExoticComponent>;
export default Switch;