// Import React import React = require("react"); // // ---------------------------------------- export interface PanelProps extends React.Props { className?: string; bsSize?: string; bsStyle?: string; collapsible?: boolean; defaultExpanded?: boolean; eventKey?: any; expanded?: boolean; footer?: any; // TODO: Add more specific type header?: any; // TODO: Add more specific type id?: string; onSelect?: Function; // TODO: Add more specific type onClick?: Function; // TODO: Add more specific type } export interface Panel extends React.ReactElement { } export interface PanelClass extends React.ComponentClass { } export var Panel: PanelClass;