import { ReactElement } from 'react'; import { FetchStateAndError } from '@zeniai/client-epic-state'; import { UnSafeCheckBoxFieldProps } from '../checkBoxField/UnSafeCheckBoxField'; import { TextFieldProps } from '../textField/TextField'; export interface CheckBoxFieldProps { field: UnSafeCheckBoxFieldProps; label: string; } export interface Props { additionalInfo: { label: string; icon?: ReactElement; }; checkBoxFields: CheckBoxFieldProps[]; label: { label: string; /** Backend field-help code; shows the label's info tooltip when copy exists. */ fieldCode?: string; width?: number; }; textField: TextFieldProps; fetchState?: FetchStateAndError; isOptionalLabel?: boolean; style?: React.CSSProperties; toolTip?: { title: string | ReactElement; width: string; }; } export declare function LabeledTextWithRecommendationsField({ label, textField, additionalInfo, checkBoxFields, fetchState, style, toolTip, isOptionalLabel, }: Readonly): import("react/jsx-runtime").JSX.Element;