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