1 | import * as React from "react";
|
2 | import { Sizes } from "react-bootstrap";
|
3 |
|
4 | declare namespace ListGroupItem {
|
5 | export interface ListGroupItemProps extends React.HTMLProps<ListGroupItem> {
|
6 | active?: any;
|
7 | bsSize?: Sizes | undefined;
|
8 | bsStyle?: string | undefined;
|
9 | eventKey?: any;
|
10 | header?: React.ReactNode | undefined;
|
11 | listItem?: boolean | undefined;
|
12 | }
|
13 | }
|
14 | declare class ListGroupItem extends React.Component<ListGroupItem.ListGroupItemProps> {}
|
15 | export = ListGroupItem;
|