import React from 'react';
export interface TreeStatusIconProps {
    color?: string;
    width?: number;
    height?: number;
    active?: boolean;
}
declare const TreeStatusIcon: React.FC<TreeStatusIconProps>;
export default TreeStatusIcon;
