import './index.less';
import RcSwitch from 'rc-switch';
import React from 'react';
declare type RcSwitchProps = React.ComponentProps<typeof RcSwitch>;
export interface SwitchProps extends RcSwitchProps {
}
declare const Checkbox: React.MemoExoticComponent<({ ...props }: SwitchProps) => React.JSX.Element>;
export default Checkbox;
