import React, { Component } from 'react'; import { ExpandIconProps } from './iExpandIcon'; import { DefaultRecordType } from './interface'; declare class ExpandIcon extends Component> { constructor(props: ExpandIconProps); shouldComponentUpdate(nextProps: ExpandIconProps): boolean; onExpand: (status: boolean, record?: DefaultRecordType, fixedIndex?: number, e?: React.MouseEvent) => void; render(): JSX.Element | null; } export default ExpandIcon;