import * as React from 'react'; import { WithStyles } from '../withStyles'; import styles from './Switch.styles'; interface SwitchProps extends WithStyles { /** Whether or not the input is checked */ checked: boolean; /** The label of the input */ label?: React.ReactNode; /** Set to true to disable the input */ disabled?: boolean; /** Called when the checked state changes */ onChange?: (checked: boolean) => void; /** Additional information to help the user fill the field. */ helperText?: React.ReactNode; testId?: string; } export declare const Switch: React.SFC; declare const _default: React.ComponentType & import("@material-ui/core/styles/withStyles").StyledComponentProps>; export default _default;