import React from 'react'; type TDocTitleProps = { autoFocus?: boolean; disabled?: boolean; renderStatus?: () => React.ReactElement; title?: string; maxLength?: number; onChange?: (title: string | undefined) => void; onFocus?: () => void; onBlur?: () => void; placeholder?: string; }; declare const DocTitle: React.FC; export default DocTitle;