import type { ListGroupProps } from "react-bootstrap/ListGroup"; import type { ListGroupItemProps } from "react-bootstrap/ListGroupItem"; import type { ReactNode } from "react"; export interface IListGroupProps extends ListGroupProps { children?: ReactNode; } export interface IListGroupItemProps extends ListGroupItemProps { }