import { MultiSelectWithCheckBoxFieldProps } from '../multiSelectWithCheckBoxField/MultiSelectWithCheckBoxField'; /** * 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; }; multiSelectWithCheckBoxField: MultiSelectWithCheckBoxFieldProps; additionalInfoLabel?: string; style?: React.CSSProperties; } export declare function LabeledMultiSelectWithCheckBoxField({ label, multiSelectWithCheckBoxField, style, additionalInfoLabel, }: Props): import("react/jsx-runtime").JSX.Element;