import * as React from "react"; export interface SwitchProps { id?: string; className?: string; offLabel: string; onLabel: string; onChange?: (e: React.MouseEvent) => void; disabled?: boolean; checked?: boolean; } /** * React Materialize: Switch */ declare const Switch: React.FC; export default Switch;