import React from "react";
import PropTypes from "prop-types";
interface Props {
    active?: boolean;
    children?: React.ReactNode;
    className?: string;
    color?: string;
    disabled?: boolean;
    hover?: boolean;
    info?: any;
    to?: string;
    href?: any;
    tag?: Function | string;
    style?: React.CSSProperties;
}
declare const ListGroupItem: {
    (props: Props): React.JSX.Element;
    propTypes: {
        active: PropTypes.Requireable<boolean>;
        children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
        className: PropTypes.Requireable<string>;
        color: PropTypes.Requireable<string>;
        disabled: PropTypes.Requireable<boolean>;
        hover: PropTypes.Requireable<boolean>;
        tag: PropTypes.Requireable<string | ((...args: any[]) => any)>;
    };
    defaultProps: {
        tag: string;
    };
};
export default ListGroupItem;
export { ListGroupItem as CDBListGroupItem };
