import * as React from 'react'; import CollapsePanel from './Panel'; export declare type KeyedReactChild = { key: any; props: any; } & React.ReactChild; export interface CollapseProps { prefixCls?: string; className?: string; defaultActiveKey?: string | string[]; activeKey?: string | string[]; statusList?: any[]; isScrollToHeader?: boolean; accordion?: boolean; showClose?: boolean; bordered?: boolean; onChange?: (value: string) => void; close?: (statusList: any[]) => void; } interface CollapseInterface extends React.FC { Panel: typeof CollapsePanel; } declare const Collapse: CollapseInterface; export default Collapse;