import { SwitchProps } from 'antd'; import React from 'react'; import './index.less'; interface ExtraProps { type?: 'round' | 'rect' | 'line'; } declare const Switch: (props: SwitchProps & ExtraProps) => React.JSX.Element; export { Switch };