UNPKG

react-bootstrap

Version:

Bootstrap 4 components built with React

22 lines (16 loc) 515 B
import * as React from 'react'; import ListGroupItem from './ListGroupItem'; import { BsPrefixComponent, SelectCallback } from './helpers'; export interface ListGroupProps { variant?: 'flush'; horizontal?: boolean | 'sm' | 'md' | 'lg' | 'xl'; activeKey?: unknown; defaultActiveKey?: unknown; onSelect?: SelectCallback; } declare class ListGroup< As extends React.ElementType = 'div' > extends BsPrefixComponent<As, ListGroupProps> { static Item: typeof ListGroupItem; } export default ListGroup;