import React from "react";
import PropTypes from "prop-types";
interface Props {
    options?: [any];
    selected?: string;
    className?: string;
    optionClassName?: any;
}
declare const Select: {
    (props: Props): React.JSX.Element;
    propTypes: {
        options: PropTypes.Requireable<any[]>;
        selected: PropTypes.Requireable<string>;
    };
    defaultProps: {
        tag: string;
    };
};
export default Select;
export { Select as CDBSelect };
