/// <reference types="react" />
import PropTypes from "prop-types";
interface Props {
    ariaLabel?: string;
    className?: string;
    onClick?: Function;
}
export declare const CloseIcon: {
    (props: Props): JSX.Element;
    defaultProps: {
        ariaLabel: string;
    };
    propTypes: {
        ariaLabel: PropTypes.Requireable<string>;
        className: PropTypes.Requireable<string>;
        onClick: PropTypes.Requireable<(...args: any[]) => any>;
    };
};
export default CloseIcon;
export { CloseIcon as CDBCloseIcon };
