/** * Created by kisnows on 2017/2/17. */ import * as React from 'react'; import BasePropTypes from './PropTypes'; import { WrapPropTypes } from './CollapseHOC'; export interface CollapsePropTypes extends BasePropTypes { prefixCls: string; } export default class Collapse extends React.Component { static Item: object; static defaultProps: { prefixCls: string; onListChange: () => void; }; constructor(props: any); handleListChange: (id: any, active: any) => void; renderList: () => React.ReactElement[] | undefined; render(): JSX.Element; }