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