import React from 'react'; import './index.less'; interface ITreeTitleProps { title?: React.ReactNode; inputPlaceholder?: string; onChange?: (val: string) => void; hasInput?: boolean; titleExt?: React.ReactNode; value?: string; } declare function Title({ title, inputPlaceholder, onChange, hasInput, titleExt, value }: ITreeTitleProps): JSX.Element; export default Title;