import React from 'react'; import type { SwitchProps } from './types'; interface SwitchState { isFocused: boolean; } export default class Switch extends React.PureComponent { static defaultProps: { trueValue: boolean; falseValue: boolean; }; state: { isFocused: boolean; }; constructor(props: SwitchProps); hanldeCheck(e: React.ChangeEvent): void; handleFocus(): void; handleBlur(): void; render(): JSX.Element; } export {};