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