import * as React from 'react'; import * as module from './module'; import './index.scss'; export default class Switch extends React.Component { static defaultProps: module.PropsInterface; state: module.StateInterface; constructor(props: any); componentWillMount(): void; componentWillReceiveProps(nextProps: any): void; toggle(): void; render(): JSX.Element; }