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