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