import * as React from "react";
export interface ListGroupProps {
    className?: string;
    children: React.ReactNode;
    transparent?: boolean;
    isCardBody?: boolean;
}
declare function ListGroup({ className, children, transparent, isCardBody, }: ListGroupProps): JSX.Element;
export default ListGroup;
