import { Component } from 'react'; import { SwitchProps as NextSwitchProps } from '@alifd/next/types/switch'; interface SwitchProps extends Omit { size?: 'xs' | 'small' | 'medium'; } declare class Switch extends Component { render(): JSX.Element; } declare const _default: typeof Switch; export default _default;