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