import { default as React } from 'react'; import { DisableMode } from '../common/common'; import { NameFieldProps } from '../nameField/NameField'; /** * Component & its Props */ export interface Props { label: { label: string; /** Backend field-help code; shows the label's info tooltip when copy exists. */ fieldCode?: string; width?: number; }; nameField: NameFieldProps; additionalInfoLabel?: string; errorInfoLabel?: string; isDisabled?: DisableMode; showAdditionalInfoLabel?: boolean; style?: React.CSSProperties; } export declare function LabeledNameField({ additionalInfoLabel, errorInfoLabel, isDisabled, label, nameField, showAdditionalInfoLabel, style, }: Readonly): import("react/jsx-runtime").JSX.Element;