import { ID } from '@zeniai/client-epic-state'; import { CreatableSingleSelectFieldProps } from '../../creatableSingleSelect/CreatableSingleSelectField'; import { DisableMode } from '../common/common'; /** * Component & its Props */ export interface Props { creatableSingleSelectField: CreatableSingleSelectFieldProps; label: { label: string; /** Backend field-help code; shows the label's info tooltip when copy exists. */ fieldCode?: string; width?: number; }; addIconInCreateLabel?: boolean; additionalInfoLabel?: string; additionalInfoTextColor?: string; errorInfoLabel?: string; isDisabled?: DisableMode; isOptionRemovable?: boolean; style?: React.CSSProperties; getLabelForId?: (id: ID) => string; onSelectChange?: (selectedId: string) => void; } export declare function LabeledCreatableSingleSelectField({ isDisabled, label, creatableSingleSelectField, style, additionalInfoLabel, errorInfoLabel, isOptionRemovable, addIconInCreateLabel, additionalInfoTextColor, onSelectChange, getLabelForId, }: Props): import("react/jsx-runtime").JSX.Element;