import React from 'react'; import { SwitchPropsType } from './PropsType'; export interface SwitchProps extends SwitchPropsType { prefixCls?: string; className?: string; platform?: string; style?: React.CSSProperties; } export default class Switch extends React.Component { render(): JSX.Element; }