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