import { ReactNode } from 'react'; import { NamePath } from 'antd/es/form/interface'; export default function FormItemLabel({ title, optionalTitle, style, disabled, tooltipContent, }: { title?: NamePath | ReactNode; style?: object; optionalTitle?: string; disabled?: boolean | undefined; tooltipContent?: string; }): import("react/jsx-runtime").JSX.Element;