import React from 'react';
interface Props {
    color?: string;
    width?: number;
    height?: number;
    active?: boolean;
}
declare const defaultProps: {
    width: number;
    height: number;
    active: boolean;
};
export declare type TreeStatusIconProps = Props & typeof defaultProps;
declare const _default: React.ComponentType<Partial<{
    width: number;
    height: number;
    active: boolean;
}> & Pick<TreeStatusIconProps, "color">>;
export default _default;
