import IElement from "./IElement.js"; import "./styles/switch.global.css"; 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