import React from "react";
import PropTypes from "prop-types";
interface Props {
    checked?: boolean;
    tag?: string;
    className?: string;
}
declare const Switch: {
    (props: Props): React.JSX.Element;
    propTypes: {
        checked: PropTypes.Requireable<boolean>;
        tag: PropTypes.Requireable<string>;
    };
    defaultProps: {
        tag: string;
        checked: boolean;
    };
};
export default Switch;
export { Switch as CDBSwitch };
