import React, { MouseEvent } from 'react';
interface ExpandIconProps {
    record: any;
    prefixCls: string;
    expandable: any;
    expanded: boolean;
    needIndentSpaced: boolean;
    onExpand: (record: any, e: MouseEvent) => void;
}
declare const _default: React.MemoExoticComponent<({ expandable, prefixCls, onExpand, needIndentSpaced, expanded, record }: ExpandIconProps) => React.JSX.Element | null>;
export default _default;
