1 | import * as React from "react";
|
2 | import { SelectCallback } from "react-bootstrap";
|
3 |
|
4 | declare namespace PanelCollapse {
|
5 | export interface PanelCollapseProps extends React.HTMLProps<PanelCollapse> {
|
6 | bsClass?: string | undefined;
|
7 | onEnter?: Function | undefined;
|
8 | onEntering?: Function | undefined;
|
9 | onEntered?: Function | undefined;
|
10 | onExit?: Function | undefined;
|
11 | onExiting?: Function | undefined;
|
12 | onExited?: Function | undefined;
|
13 | }
|
14 | }
|
15 | declare class PanelCollapse extends React.Component<PanelCollapse.PanelCollapseProps> {}
|
16 | export = PanelCollapse;
|