import IElement from "./IElement"; import "./styles/switch.global.css"; /** * Original source = https://www.htmllion.com/css3-toggle-switch-button.html */ export interface ISwitch extends IElement { checked: any; onLabel?: string; offLabel?: string; } export default function Switch({ checked, onLabel, offLabel, ...a }: ISwitch): any; //# sourceMappingURL=Switch.d.ts.map