You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
556 B
17 lines
556 B
import * as React from 'react';
|
|
import type { CollapsePanelProps } from './interface';
|
|
declare class CollapsePanel extends React.Component<CollapsePanelProps, any> {
|
|
static defaultProps: {
|
|
showArrow: boolean;
|
|
isActive: boolean;
|
|
onItemClick(): void;
|
|
headerClass: string;
|
|
forceRender: boolean;
|
|
};
|
|
shouldComponentUpdate(nextProps: CollapsePanelProps): boolean;
|
|
handleItemClick: () => void;
|
|
handleKeyPress: (e: React.KeyboardEvent) => void;
|
|
render(): JSX.Element;
|
|
}
|
|
export default CollapsePanel;
|