import * as React from 'react'; import CollapsePanel from './CollapsePanel'; export type ExpandIconPosition = 'left' | 'right' | undefined; export interface CollapseProps { activeKey?: Array | string | number; defaultActiveKey?: Array | string | number; /** 手风琴效果 */ accordion?: boolean; destroyInactivePanel?: boolean; onChange?: (key: string | string[]) => void; style?: React.CSSProperties; className?: string; prefixCls?: string; children?: React.ReactNode; } interface CollapseInterface extends React.FC { Panel: typeof CollapsePanel; } declare const Collapse: CollapseInterface; export default Collapse;