import React from 'react'; import { SwitchProps as MuiSwitchProps } from '@material-ui/core/Switch'; import { FormControlLabelProps } from '@material-ui/core'; import { ColorType } from '../utils/constants'; declare type BaseProps = Omit; export interface SwitchProps extends BaseProps { hide?: boolean; color?: ColorType; helperText?: string; label?: string; styles?: any; formProps?: FormControlLabelProps; labelPlacement?: 'end' | 'start' | 'top' | 'bottom'; } declare const _default: React.NamedExoticComponent; export default _default;