// Import React
import React = require("react");
//
// ----------------------------------------
export interface AccordionProps extends React.Props {
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
}
export interface Accordion extends React.ReactElement { }
export interface AccordionClass extends React.ComponentClass { }
export var Accordion: AccordionClass;