import React from "react"; import "./Switch.scss"; declare type IProps = { disabled?: boolean; checked?: boolean; onChange?(foo: boolean): void; label?: string | JSX.Element; ltxt?: string; rtxt?: string; tooltip?: string; }; declare const JDswitch: React.FC; export default JDswitch;