1 | import * as React from "react";
|
2 | import { SelectCallback } from "react-bootstrap";
|
3 |
|
4 | declare namespace PaginationItem {
|
5 | export interface PaginationItemProps extends React.HTMLProps<PaginationItem> {
|
6 | disabled?: boolean | undefined;
|
7 | active?: boolean | undefined;
|
8 | }
|
9 | }
|
10 | declare class PaginationItem extends React.Component<PaginationItem.PaginationItemProps> {}
|
11 | export = PaginationItem;
|