import React from 'react'; import { TdSwitchProps, SwitchValue } from './type'; import { StyledProps } from '../common'; export interface SwitchProps extends TdSwitchProps, StyledProps { } declare const Switch: React.ForwardRefExoticComponent & React.RefAttributes>; export default Switch;