import { FC } from 'react'; import { ListGroupProps } from 'reactstrap'; declare type Props = { striped?: boolean; } & ListGroupProps; declare const ListGroup: FC; export default ListGroup;